01-14-2010, 10:30 PM
|
#3 (permalink)
|
|
The Acquainted
Join Date: Feb 2008
Posts: 107
Thanks: 3
|
Thanks, I found this one which is very similar with yours, too.
PHP Code:
$results = array(); while($row=@mysql_fetch_array($nt)){ $results[] = $row; }
foreach($results as $key=>$val) { echo $val['title']; //Print all found titles. }
|
|
|