<?php
function connect() {
include_once('framework/mysql.php');
}
function cookies_unset() {
setcookie('user_name', $_POST['user_name'], time() - $cookie_time);
setcookie('user_pass', sha1($_POST['user_pass']), time() - $cookie_time);
}
function footer_close() {
if(!isset($connect))
return;
mysql_close($connect);
}
?>