[請益] php 會員系統

看板PHP作者 (大ing)時間13年前 (2010/10/26 22:05), 編輯推噓2(203)
留言5則, 4人參與, 最新討論串1/1
發生這個錯誤 Warning: Cannot modify header information - headers already sent by (output started at C:\AppServ\www\reg.php:1) in C:\AppServ\www\reg.php on line 48 這是原始碼 //if there is a row in the database, the username was found - can not add the requested username if($loginFoundUser){ $MM_qsChar = "?"; //append the username to the redirect page if (substr_count($MM_dupKeyRedirect,"?") >=1) $MM_qsChar = "&"; $MM_dupKeyRedirect = $MM_dupKeyRedirect . $MM_qsChar ."requsername=".$loginUsername; header ("Location: $MM_dupKeyRedirect"); exit; 拜託幫我看一下 我想好幾天了~"~ 有人說是48行變數沒有$可是我有打阿... -- ※ 發信站: 批踢踢實業坊(ptt.cc) ◆ From: 140.129.12.43

10/26 22:24, , 1F
Warning: Cannot modify header information - headers alr
10/26 22:24, 1F

10/26 22:24, , 2F
Google for answer
10/26 22:24, 2F

10/26 22:49, , 3F
header() 前不能有任何輸出
10/26 22:49, 3F

10/27 16:19, , 4F
最典型就是UTF8 BOM的問題. 程式檔頭有你看不到的字元.
10/27 16:19, 4F

10/30 02:33, , 5F
BOM
10/30 02:33, 5F
文章代碼(AID): #1Cnk0p0Y (PHP)