//include file for the wrapperclass
include "wrapperclass.php";
//make an object of the wrapperclass
$guest=new GuestInterface();
//make db connection
$guestpointer=$guest->connect();
$rs = $guest->getGuestBook();
while ($row=mysql_fetch_assoc($rs))
{
?>
| echo($row['Name']); ?> |
| echo($row['Topic']); ?> |
| $guest->displayFile("guestfiles/guest".$row['ID'].".txt"); ?> |