<?php
        
require('libs/Smarty.class.php');
        require (
'guestbook.class.php');    
        
$smarty = new Smarty;

//      Til hjelp dersom du plages med Smarty
      
        
$smarty->debugging true;
        
        
$gjestebok = new guestbook('gjestebok.xml'$smarty);
        
$gjestebok->printFile($smarty);
?>