How would I insert a loop into a template? Say I'm trying to list the 5 most recent whatevers. Right now I hav a while loop thats like this:
PHP Code:
while($row=mysql_fetch_array($sql)){
$text['message']=$row['message'];
}
I know that to insert just one instance of $text['message'] I would just insert $text[message] into my templates...but how would I insert the whole loop?