just out of quriosity (or something like that :o)
if you use the return statement in a function, does the rest of the function get parsed?
the function will be break if u "return sth"
"return sth"?? explain plz :o)
function test() { echo 'test1'; return false; echo 'test2'; }
then it will only print "test1" on the screen