Re: [PHP-DB] SQL Insert problem (SOLVED), Thanks!

2004-08-08 Thread Vincent Jordan
: [SPAM] Re: [PHP-DB] SQL Insert problem From: Vincent Jordan [EMAIL PROTECTED] $sql = INSERT INTO rmarequest (firstname, lastname, address, address2, city, state, zip, phone, email, serial, product, reason, rmanumber)VALUES ('$firstname', '$lastname', '$address', '$city

RE: [PHP-DB] SQL Insert problem

2004-08-05 Thread Hutchins, Richard
You're missing address2 in your list of values. This means that you have an unmatching number of column names and values in your query and that'll make the query bomb. Rich -Original Message- From: Vincent Jordan [mailto:[EMAIL PROTECTED] Sent: Thursday, August 05, 2004 10:25 AM To:

RE: [PHP-DB] SQL Insert problem

2004-08-05 Thread Vincent Jordan
, August 05, 2004 10:26 AM To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] SQL Insert problem You're missing address2 in your list of values. This means that you have an unmatching number of column names and values in your query and that'll make the query bomb. Rich -Original Message

Re: [PHP-DB] SQL Insert problem

2004-08-05 Thread Torsten Roehr
John W. Holmes [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] From: Vincent Jordan [EMAIL PROTECTED] Im having a problem inserting data. Ive looked over this again and again and can not find what ive missed. Everything else works besides the db insert. It would have helped if

Re: [PHP-DB] SQL Insert problem

2004-08-05 Thread John W. Holmes
From: Vincent Jordan [EMAIL PROTECTED] $sql = INSERT INTO rmarequest (firstname, lastname, address, address2, city, state, zip, phone, email, serial, product, reason, rmanumber)VALUES ('$firstname', '$lastname', '$address', '$city', '$state', '$zip', '$phone', '$email',

RE: [PHP-DB] SQL Insert problem

2004-08-05 Thread Hutchins, Richard
: Thursday, August 05, 2004 11:06 AM To: [EMAIL PROTECTED] Subject: RE: [PHP-DB] SQL Insert problem I have inserted '$address2', correctly in the row however it is still not putting the data in the table. I am not getting an error but I do believe I have correct syntax set to display

RE: [PHP-DB] SQL Insert problem

2004-08-05 Thread Miles Thompson
-DB] SQL Insert problem You're missing address2 in your list of values. This means that you have an unmatching number of column names and values in your query and that'll make the query bomb. Rich -Original Message- From: Vincent Jordan [mailto:[EMAIL PROTECTED] Sent