Re: [PHP] PHP & MySQL problems, updating database..

2002-01-17 Thread Miles Thompson
Hawk, If you have a working login, can we safely assume that there is information in the database for each user? If so, then we won't bother discussing insert statements, but concentrate on updates. We'll also assume that $user has update privileges on the database. The normal form of an upda

Re: [PHP] PHP & MySQL problems, updating database..

2002-01-17 Thread Dennis Moore
- From: "Hawk" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, January 17, 2002 1:18 PM Subject: [PHP] PHP & MySQL problems, updating database.. > Having a problem with this, I have a working login that supports multiple > users, and I'm trying to mak

Re: [PHP] PHP & MySQL problems, updating database..

2002-01-17 Thread Erik Price
The reason you aren't seeing any errors is because you used "or die()" -- to the best of my knowledge, this replaces any standard errors that PHP would normally generate. It appears that you have omitted the second argument to mysql_query(). A common mistake that I've made many times myself.

[PHP] PHP & MySQL problems, updating database..

2002-01-17 Thread Hawk
Having a problem with this, I have a working login that supports multiple users, and I'm trying to make it possible for the users to change their own settings etc, but I get killed when trying to send the data to the MySQL database. To connect I use mysql_connect($host,$user,$pswd) and mysql_selec