PHP Code:$post=& new ForumPost('sitepoint');
$post->preview();
if($post->isValid()){
$rant =& new Rant();
}
else {
$gun =& new DangerousWeaponFactory(TYPE_GUN);
if($gun->hasBullets() === false){
$gun->load();
}
$gun->setTarget('head');
$gun->aim();
if(!$gun->pullTrigger()){
$ex =& new Exception('misfire');
header('Location: new_rant.php');
exit;
}
else {
die();
}
}
$rh =& new RantHandler($rant);
$tpl =& $rh->getTemplate();
$rh->currentRant->add('i hate objects', $tplVars);
$rh->currentRant->add('Bye', $tplVars);
$tpl->parse();
$post->submit($tpl->display());





Bookmarks