Ok on this line :
//first check to see if they have pressed the login button
if ($_POST['LoginSumbit']) //this will be the name of the button on the webpage
{
I'm getting an undefined index error. However, In my form I have this.
//notice Mapleside is passing the session_id in when user hits login?
echo "
<form action='login.php?".SID."' method='post' name='Mapleside'>
Login Name: <input type='text' name='Customer_UserName' maxlength='25' size='15'><br>
Login Password: <input type='password' name='Customer_Password' maxlength='25' size='15'><br>
<input type='submit' name='LoginSubmit' value='Login'>
<input type='reset' name='Reset' value='Reset'>
</form>";
So isn't it already defined ??? Can someone please explain to me what i'm not seeing?