Re: [PHP] need help about this

2002-07-10 Thread Anas Mughal
How are you getting this error? Are you trying to create the table? [EMAIL PROTECTED] wrote: MySQL Error : Database Error Error Number: 1050 Table 'book_auth' already exists what this meant? what should i do for correct

RE: [PHP] need help about this

2002-07-10 Thread Sachin Keshavan
You are creating a table which already exists. The easy way to get out of this, is either create a table with a different name or drop the existing table and re-create it. Cheers, Sachin. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 11, 2002

Re: [PHP] need help about this

2002-07-10 Thread Tyler Longren
"Table 'book_auth' already exists" means that you're trying to create the 'book_auth' table again, even though it already exists. Remove the old 'book_auth' table to create the new one. -- Tyler Longren Captain Jack Communications [EMAIL PROTECTED] www.captainjack.com On Thu, 11 Jul 2002 13:

RE: [PHP] need help about this

2002-07-10 Thread Peter
means the table ur trying to create already is there... if u don't want to keep the table do a DROP tablaename in mysql or if not then change the name of the table you are trying to create > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Thursday, 1