[ 求助] 用php实现简单的框架
大家好,我用php做一个简单的框架。这是链接设置(在页面的左侧边栏,我就想点这里的超链接,然后在右边的主框里面显示内容。就像frameset一样,但是我不想用frameset):
<td align="center"><span class="STYLE4"><a href="index.php?lmbs=Superb"> Superb</a></span></td>
<td align="center"><span class="STYLE4"><a href="index.php?lmbs=New"> New</a></span></td>
在显示区域,我用php代码:
<?php
switch($lmbs){
case "Superb":
include "index1.php";
break;
case "New":
include "index2.php";
break;
case "LowPrice":
include "index3.php";
break;
case "Goods":
include "index4.php";
break;
case "":
include "index4.php";
break;
}
?>
问题是每次只是显示index4.php,对我的选择没有反应。
请大家帮帮忙,急!!!