我有视频网站。我有两个选项供主页选择。例如 SEt主页:Index1 / Index2。用户将从这两个中选择,它将是他的索引页面,直到会话或Cookie过期。 它就像www.mysite.com(选择了任何选项。网址不会显示主页的选定选项)。 我还没有找到任何解决方案。
答案 0 :(得分:1)
我所做的是传递锚标记中页面的名称,在会话中捕获它并检查会话是否为空执行特定查询..
<?php
if(!empty($_SESSION['homepage'])){
$index = mysql_real_escape_string($_SESSION['homepage']); } if($index=='popular'){ $SQL= "SELECT * FROM table1 WHERE condition1";}
if($index=='newest'){ $SQL= "SELECT * FROM table1 WHERE condition2"; }
?>
答案 1 :(得分:0)
在index.php文件中尝试这样的事情
if(check your session or cookie){
require_once("index1.php");
}else{
require_once("index2.php");
}