Perhaps this is obvious, but even if the long list of errors seems daunting, don't sweat it too much. Because it all starts with the fact that it can't connect to the database, then when it tries to run all the other DB functions they fail too, producing the errors.
To avoid the other errors, you may try: $connect = mysql_connect("localhost", "username", "password") or die(mysql_error());
That will prevent your other errors from being displayed.
So, focus on: Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'quser'@'localhost' (using password: YES) in /home/sanderan/public_html/php/process-form.php on line 9
You wrote your connection string correctly, but it seems that you are having trouble connecting. Try the obvious (verify username & password EXACTLY as they appear on your server - with case sensitivity) - and then you might need to move to figuring out why 'localhost' isn't working. Some servers have it set up a bit differently.
Depending on your hosting / server - and what back-end you used to set up tables & a db (PHPMyAdmin or something?) you should have some guidance as to how exactly to write your connection string.
|