Afficher un message
Vieux 18/09/2007, 09h21   #3
gosha bine
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: Joining search queries

On 17.09.2007 23:22 Alec wrote:
> Sorry newbie question...
>
> I have made two different search queries on the same table.
>
> How can I join these together in one list, so the results from the
> first query come listed before the second, ie keeping the same order.


$results = array();

while($row = mysql_fetch_assoc($query_1))
$results[] = $row;

while($row = mysql_fetch_assoc($query_2))
$results[] = $row;


If this is not what you're looking for, please be more specific.



--
gosha bine

makrell ~ http://www.tagarga.com/blok/makrell
php done right http://code.google.com/p/pihipi
  Réponse avec citation
 
Page generated in 0,04890 seconds with 9 queries