Jump to content

If statment


khile

Recommended Posts

im having a few problems with if and endif

 

see line of code below what have i done wrong

 

<? if($forum_user['g_id'] <= USER_MOD):?><th class="tcr"><?php echo $lang_online['IP'] ?></th><?php echo "\n";endif ?>

 

keeps kicking up error: Parse error: syntax error, unexpected T_ENDIF

 

thanks

Link to comment
Share on other sites

A) The error is probably because you used a short open tag <?

B) You should stick to the traditional  if(){} construct and you should format your code so that it is readable

C) Why are you switching into/out of php so many times in one statement? No one can read that mess, including you.

 

if($forum_user['g_id'] <= USER_MOD){ echo "<th class='tcr'>{$lang_online['IP']}</th>\n"; }

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

×
×
  • 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.