"; exit; } return $linkid; } //Binde templates system ein require('Smarty-2.6.18/Smarty.class.php'); $smarty = new Smarty; $smarty->template_dir = 'Templates/guestbook/'; $smarty->compile_dir = 'templates_c/'; $smarty->config_dir = 'configs/'; $smarty->cache_dir = 'cache/'; if($_GET['action']=='send' and $_POST['spam']>5) { $res=mysql_db_query($db, "INSERT INTO guestbook(titel, datum, email, www, text, ip) VALUES ('".$_POST['titel']."', now(), '".$_POST['email']."','".$_POST['www']."','".$_POST['text']."','".$_SERVER['REMOTE_ADDR']."')"); header('Location: guestbook.php?action=ende'); } ?> VC - Sportiva
Gästebuch
display('guestbook_add.html'); } elseif($_GET['action']=='ende') { $smarty->display('feedback.html'); } else { $guestbook_query=mysql_db_query($db, "SELECT * FROM guestbook order by datum DESC"); while($guestbook=mysql_fetch_array($guestbook_query, MYSQL_ASSOC)) { $guestbook['text']=nl2br($guestbook['text']); $guestbook_array[]=$guestbook; } $smarty->assign('guestbook', $guestbook_array); //$main_content = $smarty->fetch('html/error.html'); //$smarty->assign('main_content', $main_content); //Lade Index templates $smarty->display('guestbook.html'); } ?>