Re: Strange PHP + MySQL add / update issue with NULL values

2002-08-19 Thread Egor Egorov
Dan, Saturday, August 17, 2002, 7:55:53 PM, you wrote: DT I have a table where I have specified several columns which I have specified DT that NULL values are not allowed. DT I have created a PHP based create / update / delete page where users can DT update the table. DT I have an INSERT

Strange PHP + MySQL add / update issue with NULL values

2002-08-17 Thread Dan Tappin
I have a table where I have specified several columns which I have specified that NULL values are not allowed. I have created a PHP based create / update / delete page where users can update the table. I have an INSERT script that takes the user input and generates the following query

RE: Strange PHP + MySQL add / update issue with NULL values

2002-08-17 Thread Aron Pilhofer
Try this instead: INSERT INTO table SET required_field = -Original Message- From: Dan Tappin [mailto:[EMAIL PROTECTED]] Sent: Saturday, August 17, 2002 12:56 PM To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Strange PHP + MySQL add / update issue with NULL values I have