Posted by gosha bine on 09/18/07 08:21
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
Navigation:
[Reply to this message]
|