RE: [PHP] can anyone explain this error ?

2002-01-23 Thread Rick Emery
It means you are trying to insert 22 values into 20 fields -Original Message- From: Matthew Darcy [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 23, 2002 4:11 PM To: PHP developers Subject: [PHP] can anyone explain this error ? I am doing an insert into a EMPTY mysql table. 1

Re: [PHP] can anyone explain this error ?

2002-01-23 Thread Richard Baskett
Basically you're trying to add more values into the table than columns specified. You have 22 values and only 20 columns specified in your $query. Rick Finish each day and be done with it. You have done what you could; some blunders and absurdities have crept in; forget them as soon as you

RE: [PHP] can anyone explain this error ?

2002-01-23 Thread Matthew Darcy
does this error normally mean this error or did you gather this from counting the code. Thanks, Matt. -Original Message- From: Richard Baskett [mailto:[EMAIL PROTECTED]] Sent: 23 January 2002 22:22 To: [EMAIL PROTECTED]; PHP General Subject: Re: [PHP] can anyone explain this error