Fix lỗi headers already sent by trong PHP

Thursday, September 18, 2014
Khi bạn sử dụng hàm header(); trong PHP thì đôi khi sẽ có lỗi này:
Warning: Cannot modify header information - headers already sent by


. Tùy người bị tùy người không , cách fix lỗi này cũng đơn giản thôi
Cách 1 :
Vào C:\Windows\php.ini tìm dòng
output_buffering=OFF
sửa nó lại thành ON
Cách 2:
Các bạn thêm dòng này trên top của chương trình là được.
ob_start();
Cách này giống để session vậy nha.
Khai báo như sau:
<?
ob_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<?php
header("Location:http://donbadao.blogspot.com/");
?>
</body>
</html>
Như vậy hãy save lại và tận hưởng kết quả

No comments:

Post a Comment