我已经很久没有升级服务器了,我似乎无法在新服务器上使用此代码,默认的home.php会显示,但切换页面却不会(http://mydomian.com/?content=contact)停留在主页上。
有什么想法吗?
<?php
switch($content) {
default:
include('home.php');
break; case "contact":
include('contact.php');
}
?>
答案 0 :(得分:3)
您需要使用$_GET['content']
$content = $_GET['content'];
if($content=='contact'){
include('contact.php');
}else{
include('home.php');
}
替代:
$content = $_GET['content'];
switch($content) {
default:
include('home.php');
break;
case "contact":
include('contact.php');
}
答案 1 :(得分:1)
没有代码获取php中$ content的内容。
您需要类似:$content = $_GET['content'];