第三個ELSEIF讀不到.......
急求解
<?php
$p = $_GET['p'];
//內容
if($p == 'home'){
include("pages/home.php"); //首頁
}elseif ($p == 'about'){
include("pages/about.php"); //關於我們
}elseif($p = 'list'){
include("pages/list.php"); //文章列表
}
?>
你最後一個的 elseif
裡的判斷式 =
是要寫成 ==
吧