![]() |
If statement
Ok I have the following IF statement:
PHP Code:
Note: In vbulletin 3.0 f is used to determine the forum id. |
vB3 code/hacking isn't allowed to be discussed yet.
Also editing any main files is pretty dumb. It's not even RC yet and that means alot may still change. |
Personally I feel this is perfectly legit. I have asked questions before about vbulletin 3. I'm not asking how to do it just if someone would look at my if statement and see if there is anything wrong with it.
|
PHP Code:
|
I think you still need the ' ' around the 57 but it works thanks!
|
PHP rarely cares about data types. The only time it definitely will is if you use the === operator which implicitly checks the type of the left and right values.
Also vB3 hacking discussion is not allowed as Steve said. |
Quote:
If my question was stated was it was is it ok? I didn't really want to know how to do it in vb3 just if my if statement was correct or not which Steve correct for me. |
I'm just confirming what he said; I wasn't necessarily saying that your question was central to vB3. :)
|
Quote:
|
You need the ' ' when it's a string :)
|
Quote:
Yup - to keep with good coding practices ;) Strings should be wrapped in either ' ... ' or " ..." and numbers can be left as is :) |
Should be '...' for stings and "..." for html or holding a variable togeather if you want to goto good codeing practices. ;)
|
' ... ' is a simple string which is not parsed by PHP for variables, etc.
" ... " is a complex string which is parsed (and is therefore slightly less efficient). $mystring = '<a href="'.$link.'">Test URL</a>'; $mystring = "<a href=\"$link\">Test URL</a>"; both produce the same result, however the first example is more efficiant and (IMO) easier to read and work with. |
$mystring = '<a href="$link">test url</a>';
Should work? |
in that case it will just print exactly that as php does not parse the string for variables :)
|
Unless of course that string gets passed through eval(); later on ;)
|
All times are GMT. The time now is 06:31 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|