如何更改默认设计?

时间:2014-05-21 08:07:14

标签: php html css cross-domain web-hosting

我有两种不同的网页设计(用PHP,HTML,CSS和JavaScript创建)我可以上传这两种网页并且不时地进行切换吗?

如何重定向以便我可以选择在打开网站时显示的设计?

1 个答案:

答案 0 :(得分:0)

尝试使用此代码:

if(some condition here)
header('Location:design1.php');
else if(some condition here)
header('Location:design2.php');

或者您也可以使用包含功能。

if(some condition here)
include("design1.php");
else if(some condition here)
include("design2.php");

感谢。