Parse Error
Posted: Sun May 30, 2004 7:22 pm
Code: Select all
<?
<form method='post'>
Username
<input type='text' name='alias' value='' size='30' maxlength='25'>
<input type='password' name='pass' value='' size='30' maxlength='10'>
IP
<input type='hidden' name='myip' value='' size='30' maxlength='10'>
<input type='hidden' name='action' value='join'>
<input type='submit' name='' value='Submit!'>
mysql_query("INSERT INTO `users` VALUES (
'$alias',
'$pass',
'$myip');");
}
?>I don't see any problems