Jump to content

If statement question


Padgoi

Recommended Posts

If it's considered HTML, I apologize for posting it here.

Can anyone help regardless?

 

The problem is that your code isn't PHP.  It seems to be a mishmash of PHP and HTML.

 

PHP doesn't use tags for statements -- only if you're going from HTML to PHP, or vise versa.  So, an if-statement does not look like:

<if something>
{ ... }
</if>

 

If-statements, in PHP, look like:

<?php

if(something){
   ...
}

?>

 

Note: I used the PHP start and end tags to turn on this message board's syntax highlighting.

 

In order to answer your question, we'll need to see more code and know exactly what you're testing against.

Link to comment
https://forums.phpfreaks.com/topic/72795-if-statement-question/#findComment-367148
Share on other sites

It's a board script, Invision Power Board.  It is going from PHP to HTML, but there is no other code, just that. 

 

Looks like they're using a templating system then, as what you posted originally isn't plain PHP.

 

Like I asked before, what do you want to test against?  You mentioned another number other than 14.  Is it just one other number?  Or a range of other numbers?

Link to comment
https://forums.phpfreaks.com/topic/72795-if-statement-question/#findComment-367158
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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