RE: [PHP-DB] A little advise please

2002-12-11 Thread Edward Peloke
change this part so that $query is capitalized if (mysql_db_query ($DBName, $query, $Link)){ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 11:23 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] A little advise please Hello, I have a

Re: [PHP-DB] A little advise please

2002-12-11 Thread Mark
You're trying to run the query twice. The first time, you're using a lowercase q in $query, which will fail because you have defined it as $Query. Then you're calling the function again with $Query, wihch is why the table is getting created. You shouldn't be calling it twice, and you need to be