Jump to content
  • 0

Как правильно написать if else


Dude
 Share

Question

Здраствуйте! Подскажите пожалуйста, как правильно написать If - Else в php.

Вобщем, у меня с первой страницы на вторую передается значение переменной cat_id. А на второй, в зависимости от значения, должно подставлятся style="display:block;" или style="display:none;".

Выйти должно:

<div id="qwe" style="display:block;" >
123
</div>

или

<div id="qwe" style="display:none;" >
123
</div>

Я пишу:

<div id="qwe" 
<?
if (cat_id == 1)
{
echo 'style="display:block;" >';
}

else
{
echo 'style="display:none;" >';
}
?>
123
</div>

А мне выдает ошибку. Как нужно правильно написать?

:) Извеняюсь. Несколько часов мучался, в чем проблема? А оказалось, что я забыл написать знак переменной перед cat_id в "if ($cat_id == 1)". Вот за что я и не люблю точные науки. Одна ошибка, и уже ничего не получется))

Edited by Dude
Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Это был не текст, а неопределенная константа. Вот ради того, чтоб не попадаться на таких досадных мелочах, и нужно обязательно выводить (не обязательно на экран, хоть куда-нибудь) все ошибки, включая Notice (т.е. error_reporting(E_ALL) без каких-либо исключений!).

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy