Hi there!
I've got some, you might think it dull, question.
I want to check if a variable is defined and its value at one and the same line like this:
if((isset($var))&&($var="..."))
The question is if PHP is gonna spit some warning in the case that $var is not defied or it won't check the second expression in case that the first is wrong.
Thanks in advance.
Djumaka.