Thread: While Question
View Single Post
Old 01-14-2010, 10:30 PM   #3 (permalink)
CΛSTΞX
The Acquainted
 
Join Date: Feb 2008
Posts: 107
Thanks: 3
CΛSTΞX is on a distinguished road
Default

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.

__________________
Downloadic
infolizer
Send a message via MSN to CΛSTΞX
CΛSTΞX is offline  
Reply With Quote