cvhainb wrote:
Warning: Cannot modify header information - headers already sent by (output started at D:\AppServ\www\ShopOnline\Category_fns.php:54) in D:\AppServ\www\ShopOnline\ShoppingCart_fns.php on line 11
Em không hiểu nó nói cái gì, mong mấy anh giải đáp giúp, web vẫn chạy nhưng nó báo cái đó em không biết làm sao luôn, hix.Thanks all.
Lỗi này thường xảy ra khi trước header(); đã in ra ký tự nào đó và nguyên nhân thường gặp như bác xnohat đã nói.
Cậu thử dùng editor save file dạng utf-8 without BOM.
Hoặc dùng cách này mỗi khi sử dụng header();
Code:
<?php
ob_start();
header();
ob_end_flush();
exit;
?>