Re: [PHP] Performing Multiple Prepared Queries

2007-10-03 Thread Nathaniel Hall
Carlton Whitehead wrote: > Hi Nathaniel, > > When your query starts its second loop, the resultset from the first > one is still defined as the resultset in your prepared statement > object. Before you can get another resultset, you need to clear the > first one using the mysqli_stmt_free_result

Re: [PHP] Performing Multiple Prepared Queries

2007-10-03 Thread Carlton Whitehead
Hi Nathaniel, When your query starts its second loop, the resultset from the first one is still defined as the resultset in your prepared statement object. Before you can get another resultset, you need to clear the first one using the mysqli_stmt_free_result function. It would probably be be