Re: PHP/MySQL Problem

2004-11-07 Thread Ligaya Turmelle
Are you running the 2 queries at the same time? they should be run 1 at a time. What does mysql_error() say? use it when you are checking the result set (if (!$result) { echo "Error: " . mysql_error();}Are the result sets being sent to 2 different identifiers? Just a few possibilities. Re

Re: PHP/MySQL Problem

2004-11-05 Thread Gleb Paharenko
Hi. How did you check that Query 2 has been executed? You may add to your php.ini file mysql.trace_mode = On to see some warnings and errors. Yahoo Default User <[EMAIL PROTECTED]> wrote: > Hi Guys, > > I have a problem with MySQL in conjunction with PHP so > I also decided to post h

RE: PHP/MySQL Problem

2004-11-05 Thread Chris Blackwell
when asking a question, it always helpful to post you code/queries so we can see what is happening. but tbh, this sounds like it's a php code problem. you have established that both queries work, on there own I'm don't know anything about php, but it sounds like you are not executing the first quer

RE: php mysql problem

2004-05-13 Thread Mike Johnson
From: Jianping Zhu [mailto:[EMAIL PROTECTED] >but i got error message with: >http://coopunit.forestry.uga.edu:8080/testdb.php >the error is: >Fatal error: Call to undefined function: >mysql_connect() in /var/www/html/testdb.php on line 13 > >How can Fix this problem? Thank

Re: PHP + MySQL problem (strange behavior)

2001-12-06 Thread mjriding
I've had a few queries that worked strangely worked in Mysql monitor, but did not work from PHP. I was able to solve every one of them by ensure that the query in PHP did not have any line breaks in it. It normally doesn't matter if there are line breaks in the code, but on occassion, a line

RE: PHP/MySQL Problem

2001-10-30 Thread Don Read
On 30-Oct-2001 Matthew Walker wrote: > Does anyone see anything wrong with the following code/query syntax? I'm > using the PEAR DB class for PHP. When this runs, it correctly inserts > the row to the table, but is failing to retrieve the last_insert_id(). > > function StartOrder() > { > globa

RE: PHP/MySQL Problem

2001-10-30 Thread rc
rd PHP functions won't work. (And yes, I did just test it.) > > -Original Message- > From: rc [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 30, 2001 1:58 PM > To: Matthew Walker > Cc: [EMAIL PROTECTED] > Subject: Re: PHP/MySQL Problem > > Mysql_Inse

Re: PHP/MySQL Problem

2001-10-30 Thread Bill Adams
rc wrote: > Mysql_Insert_ID($dbhandle->connection); > > gets the last id of the last insert statement - > if you do any db activity > after the insert, this won't work. In other words: > $res = $dbhandle->query("select last_insert_id()"); > $dbhandle->query("UNLOCK TABLES"); > $res

RE: PHP/MySQL Problem

2001-10-30 Thread rc
s, I did just test it.) > > -Original Message- > From: rc [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, October 30, 2001 1:58 PM > To: Matthew Walker > Cc: [EMAIL PROTECTED] > Subject: Re: PHP/MySQL Problem > > Mysql_Insert_ID($dbhandle->connection); > > gets th

RE: PHP/MySQL Problem

2001-10-30 Thread Matthew Walker
PROTECTED] Subject: Re: PHP/MySQL Problem Mysql_Insert_ID($dbhandle->connection); gets the last id of the last insert statement - if you do any db activity after the insert, this won't work. On Tue, 30 Oct 2001, Matthew Walker wrote: > Does anyone see anything wrong with the following c

Re: PHP/MySQL Problem

2001-10-30 Thread rc
Mysql_Insert_ID($dbhandle->connection); gets the last id of the last insert statement - if you do any db activity after the insert, this won't work. On Tue, 30 Oct 2001, Matthew Walker wrote: > Does anyone see anything wrong with the following code/query syntax? I'm > using the PEAR DB class f