So Im Making A SignUp Form And Its Going Very Good. I Dont Want To The Code, So Im Gonna Give An Example.
<form action="register.php" name="signup_form">
<input type="text" name="username" method='POST'/>
<input type="password" name="password" method='POST'/>
</form>
Here Is The Register.php Script
$accounts = mysql_connect("localhost", "root", "") or die (mysql_error());
mysql_select_db("register", $accounts);
$sql = " INSERT INTO users (username, password) Values (????)
mysql_query($sql, $accounts)
How Do I, Where The Question Marks Are Post Data To The Database Form The Form Instead Of Personaly Entering Names. I Was Thinking Of SomeThing Like $_Post['Username'] But I Dont Know Please Help Me.