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

2004-08-08 Thread Vincent Jordan
[EMAIL PROTECTED] > Subject: [SPAM] Re: [PHP-DB] SQL Insert problem > > From: "Vincent Jordan" <[EMAIL PROTECTED]> > > > > > $sql = "INSERT INTO rmarequest (firstname, lastname, address, > > > > address2, > > > > city, state, zip

RE: [PHP-DB] SQL Insert problem

2004-08-05 Thread Miles Thompson
> 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. > > R

RE: [PHP-DB] SQL Insert problem

2004-08-05 Thread Hutchins, Richard
ROTECTED] > Sent: 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 a

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', '$phon

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

RE: [PHP-DB] SQL Insert problem

2004-08-05 Thread Vincent Jordan
> Sent: Thursday, 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

[PHP-DB] SQL Insert problem

2004-08-05 Thread Vincent Jordan
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. http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";> "; $message = "$firstname $lastname $address $address2 $city $state $zip $ph

RE: [PHP-DB] SQL Insert problem

2004-08-05 Thread Hutchins, Richard
t 05, 2004 10:25 AM > To: [EMAIL PROTECTED] > Subject: [PHP-DB] SQL Insert problem > > > 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. > > > > &