setup(); $this->bind(); } //Setup function setup (){ //Grab the user if(isset($_GET['cid'])){ $confirm_id = $_GET['cid']; }else{ header("HTTP/1.0 404 Not Found"); exit; } $user = new user(); if ($user->load_from_confirm_id($confirm_id)){ //Grab the postcode and area $this->postcode = $user->postcode; $this->alert_area_size = alert_size_to_meters($user->alert_area_size); //delete the user $user->delete(); }else{ header("HTTP/1.0 404 Not Found"); exit; } } //Bind function bind() { $form_action = $_SERVER['PHP_SELF']; //smarty $smarty = new Smarty; $smarty->force_compile = true; $smarty->compile_dir = SMARTY_COMPILE_DIRECTORY; $smarty->assign("stats", stats::get_stats()); $smarty->assign("menu_item", "signup"); $smarty->assign("page_title","Unsubscribed"); $smarty->assign("postcode", $this->postcode); $smarty->assign("alert_area_size", $this->alert_area_size); //Render $smarty->display('unsubscribed.tpl'); } } ?>