собстсенно
<?
session_start();
if(!isset($_POST['go'])){
header("Location: http://".$_SERVER['SERVER_NAME']."/admin/index.php");
exit();
}
/* ———————— Connect to DB ———————— */
include_once('../settings.php');
include_once('../classes/db/db_mysql/db_mysql.class.php');
$db = new db(DB_HOST, $DB_USER, $DB_PASSWORD, DB_BASE_NAME);
$sql = 'SET NAMES cp1251';
$db->Execute($sql);
$db->query("SELECT id FROM `users` WHERE `login` = '".$_POST['login']."' AND `password` = '".md5('zerindesign'.$_POST['password'].'zerindesign')."'");
$row = $db->fetchAssoc();
if($db->numRows() == 1){
$_POST = array();
$_SESSION['admin']['id'] = $row['id'];
header("Location: http://".$_SERVER['SERVER_NAME']."/admin/admin.php");
exit();
}else{
header("Location: http://".$_SERVER['SERVER_NAME']."/admin/index.php");
exit();
}
?>
Т.е если нашло юзера кидаем куда надо…но сценарий останавливается!
До header'a заголовки не посылаются.