Loading...
This site is best viewed in a modern browser with JavaScript enabled.
Something went wrong while trying to load the full version of this site. Try hard-refreshing this page to fix the error.
[RESOLVED] A few questions...
mikawhat
i've seen in if statements that some people are using 3 X = (if ($something === '') and some other 2 X = (if ($something == '') . What's the difference of these two?
i'm using a @ when creating a query (
@
("..."); ). What's the use of that @?
laserlight
Take a look at the PHP Manual on
Comparison Operators
and
Error Control Operators
.
mikawhat
ok. thank you.