所以我想基本上使它象:P =布拉布拉& DEP =布拉布拉
switch($_GET['p'])
{
case 'home':
include("template/index.html");
break;
case null:
include("template/index.html");
break;
case 'roster':
include("template/roster.html");
break;
case 'about':
include("template/about.html");
break;
case 'members':
include("members/index.php");
break;
}
if(($_GET['p'] == 'about') && ($_GET['dep'] == 'hospital'))
{
include("template/hospital.html");
}
它仍然包括about.html和hospital.html當我做blablabla?p =約& dep =醫院
我該如何解決這個問題?