10-24-2007, 10:51 AM
|
#3 (permalink)
|
|
The Acquainted
Join Date: Sep 2007
Posts: 126
Thanks: 4
|
Quote:
Originally Posted by Salathe
PHP Code:
$interface->content = '';
while($row = $database->FetchArray($query)) {
$interface->content .= sprintf('<p>%s, %s, %s</p>', $row['id'], $row['title'], $row['published']);
}
|
Thanks! That did the trick, awesome Salathe! :D
|
|
|
|