Apr 23, 2012 #1 LWolf Programmer Feb 3, 2008 77 US I am new to php and am just trying to display a username that was posted in a form. <?php echo $_Request ["username"] ?> I get no response. What am I doing wrong? THanks. K
I am new to php and am just trying to display a username that was posted in a form. <?php echo $_Request ["username"] ?> I get no response. What am I doing wrong? THanks. K
Apr 23, 2012 1 #2 merlinx Programmer Sep 20, 2002 170 DE off the top case sensitivity $_REQUEST not $_Request. it's also better to use $_GET & $_POST accordingly to avoid conflicts. Upvote 0 Downvote
off the top case sensitivity $_REQUEST not $_Request. it's also better to use $_GET & $_POST accordingly to avoid conflicts.
Apr 23, 2012 Thread starter #3 LWolf Programmer Feb 3, 2008 77 US Thats it, im coming over from ASP where case sensitivity was not much of an issue. Thanks. Upvote 0 Downvote