Тема: Cannot modify header information - headers already sent. Як виправити?
Підкажіть будь ласка. Вибиває помилка:
Warning: Cannot modify header information - headers already sent by (output started at D:\OpenServer\domains\progress\admin\index.php:15) in D:\OpenServer\domains\progress\admin\index.php on line 17
ось код
<?php
include_once('/db.php');
mysql_select_db('progress',$db);
$result = mysql_query("SELECT * FROM users ORDER BY id",$db);
$myrow = mysql_fetch_array($result);
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="style/css" href="/style.css">
<title>Адмін панель</title>
</head>
<body>
<?php
if(!isset($_SESSION['log'])){
header('Location: /login.php');
}
?>
</body>
</html>