View Single Post
  #3 (permalink)  
Old Mar 28th, 2007, 14:59
robukni robukni is offline
Up'n'Coming Member
Join Date: Jan 2006
Location: NI
Posts: 50
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Username & Password

This is my signin Form:

<FORM ACTION="authenticate.php" METHOD="get">
USERNAME: <INPUT NAME="Username" TYPE="text" ID="Username"><BR><BR>
PASSWORD: <INPUT NAME="Password" TYPE="text" ID="Password"><BR><BR>
<INPUT NAME="Login" TYPE="submit">
</FORM>

so how would i declare those two variables in php script, like this?

$Username =$_POST['Username'];
$Password =$_POST['Password'];


Thanks
Robert
Reply With Quote