Thread: While Question
View Single Post
Old 01-14-2010, 10:28 PM   #2 (permalink)
delayedinsanity
is cute and cuddly
 
delayedinsanity's Avatar
 
Join Date: Mar 2008
Location: Vegas, Baby
Posts: 963
Thanks: 31
delayedinsanity is on a distinguished road
Default

Not sure if I'm following you?

php Code:
$results = array();

while ( $row = mysql_fetch_array( $nt ) ) {
    $results[] = $row['title'];
}

print_r( $results );

foreach ( $results as $title ) {
    echo $title;
}
delayedinsanity is offline  
Reply With Quote