The question is about :
$username = $_REQUEST['username'];
the thing is, that in this page.php, sometimes there is a "username" parameter
and sometimes there is no parameter
is there something what I can use to see if the $_REQUEST['username'] is "defined in this page?"
ASP handles this very flexible ... if there was no 'username' parameter sent, then $_REQUEST['username'] = ""
ColdFusion has something like "if isdefined $_REQUEST['username'] then"
what can I do here ?
thank you
--
If I would be such a good coder as I like coding ... I would be the Best
$username = $_REQUEST['username'];
the thing is, that in this page.php, sometimes there is a "username" parameter
and sometimes there is no parameter
is there something what I can use to see if the $_REQUEST['username'] is "defined in this page?"
ASP handles this very flexible ... if there was no 'username' parameter sent, then $_REQUEST['username'] = ""
ColdFusion has something like "if isdefined $_REQUEST['username'] then"
what can I do here ?
thank you
--
If I would be such a good coder as I like coding ... I would be the Best