Friday, June 25, 2010

Redirect by PHP Code

<?php

// redirect ด้วย html tag ไม่ค่อยน่าใช้ ถ้าเราเขียน PHP เพราะเค้ากด ESC หน้าที่จะ redirect ก็จะไม่ทำงานแหละ
//echo "<meta http-equiv='refresh' content='1;URL=http://localhost/'>" ;

// ใช้ header เหมาะมากๆ
header("Location: http://localhost/");

// ตามด้วย exit อีกนิดหน่อยน่าจะดี
exit;

?>


อ้างอิง

No comments:

Post a Comment

Popular Posts