Post archive
Tag: redirect
-
-
php redirect สั่งเด้งฟ้าผ่า
ตัว PHP มีคำสั่งเฉพาะสำหรับเปลี่ยนหน้าเพจ เช่นสมมติว่า หลังจากทำโค้ดหน้านี้เสร็จแล้วจะให้ไปหน้าไหนต่อ หรือตัวอย่างที่เห็นกันชัดๆ ก็คือระบบล้อกอิน
READ MORE -
วิธีแก้ปัญหา Warning: Cannot modify header information – headers already sent by…
Warning: Cannot modify header information – headers already sent by ปัญหานี้เกิดจาก เรียกใช้คำสั่ง header() หลังจากมี output ส่งไปยัง client แล้ว ดูตัวอย่างที่มีปัญหานะครับ 1. มีคำว่า Some text ถูกส่งออกไปแล้ว <?php echo "Some text" ; header("Location:index.php") ; ?><?php echo "Some text" ; header("Location:index.php") ; ?> 2. มีคำว่า <html> ถูกส่งออกไปแล้ว <html> <?php header("Location:index.php") ; ?><html> <?php header("Location:index.php") ; ?> 3. มี white […]
READ MORE