Please help a newbie

php4.3 would have register_globals set to OFF in the .ini file, therefore accessing variables means having to reference the array then var name.

echo $_POST'name'];
or
echo $_GET['name'];
 
actually you first have to add a value to your <INPUT TYPE="text" NAME="username" VALUE=\"" . $_GET['username']>
 
I wouldn't reccomend having the username within the URL

http://www.php-forum.com/p/viewtopic.php?t=1483
 
Back
Top