With Dreamweaver and PHP, I am trying to use an HTML form that I created to add tables to my MySQL database, but it's just not adding! The MySQL Database is called 'login' and the table is called 'users', and here is the code I put into Dreamweaver:
$query = mysql_query("INSERT INTO users VALUES ('','$name','$username','$enc_password')")
Any suggestions?
$query = mysql_query("INSERT INTO users VALUES ('','$name','$username','$enc_password')")
Any suggestions?