it doesnt seem to work... it wont save...
im doing this for a register script and i have the table name users, with the colums as user_name, user_pass, user_email, and aim_aol.
i changed what you gave me so its
<?PHP
mysql_connect("localhost","USER","PASS");
mysql_query("INSERT INTO users VALUES ('$user_name', '$user_pass', '$user_email', '$aim_aol')");
?>
and the name of each input is what it is in the column (user_name in the column in my db is user_name in the input name)
whats wrong?