public static function run($dir) { if ($dir == "Out") { setcookie("user", "", time() - 3600); } LogView::show($dir); }
<!DOCTYPE html> <html> <head> <title>LogView Tests</title> </head> <body> <h1>LogView Tests</h1> <h3>Should call LogView::show()</h3> <hr/> <?php include_once "../includer.php"; LogView::show("In"); ?> </body> </html>