I'm converting some code to work with "globals off" and had a quick question.
if (!$var)
$var = 50
is the old code to check to see if var is set, but:
if (!$_GET[var])
$var = 50
doesn't seem to work. It sets var to 50 even if a value was sent.
How do i do this in a globals off environment? Thanks in advance for any help!