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_data[0]);
  echo("Value2:" . $query_data[1]);
 }


"yanshuldg" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> 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: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
>



-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to