You can use a query and put the result into an array. There is an example below. You will need html where the variables are integrated in the "while" loop.
PHP Code:
$query = "select description,title from ".MYSQLTABLE." where (site = '$site') $order";
$result = mysql_query($query);
$number = mysql_numrows($result);
$i = 1;
while ($i <= $number)
{
$row = mysql_fetch_array($result);
$title = stripslashes($row["title"]);
$description = stripslashes(nl2br($row["description"]));
$i++;
}