Re: [PHP-WIN] About mysql

2001-04-04 Thread MD
Honestly, it is hard to understand the question but if you are asking how to obtain more than 1 result set out of a mysql_query I suggest mysql_fetch_row. example: $query = mysql_query("SELECT * FROM TableName", $conn); while($query_data = mysql_fetch_row($query)) { echo("Value1:" . $query_

RE: [PHP-WIN] About mysql

2001-04-03 Thread Svensson, B.A.T.
One solution could be; Inserting the two result sets into a temporary table, and then returning the temporary table. And of course: the attribute set of the temporary table has to be the lcg between the two result sets. >-Original Message- >From: yanshuldg [mailto:[EMAIL PROTECTED]] >Sen

Re: [PHP-WIN] About mysql

2001-04-03 Thread Rasmus Lerdorf
uh, what? On Tue, 3 Apr 2001, yanshuldg wrote: > There're two result sets of the same structure created by mysql_query(), > How can I combine them into one? > > > -- > PHP Windows Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [E