使用PHP写网页,怎样通过url的query部分(也就是问号后面的部分)的不同,来显示不同内容?
比如,字符串存放在数组$arr中url为http://localhost/classtable/table.php我想要:http://localhost/classta...
比如,字符串存放在数组$arr中
url为http://localhost/classtable/table.php
我想要:
http://localhost/classtable/table.php?date=0 显示Array[0]的内容
http://localhost/classtable/table.php?date=1 显示Array[1]的内容
http://localhost/classtable/table.php?date=2 显示Array[2]的内容
…… 展开
url为http://localhost/classtable/table.php
我想要:
http://localhost/classtable/table.php?date=0 显示Array[0]的内容
http://localhost/classtable/table.php?date=1 显示Array[1]的内容
http://localhost/classtable/table.php?date=2 显示Array[2]的内容
…… 展开
展开全部
switch($_GET['data']){
case '0':print_r(array[0]);break;
case '1':print_r(array[1]);break;
case '2':print_r(array[2]);break;
.....
....
...
}
case '0':print_r(array[0]);break;
case '1':print_r(array[1]);break;
case '2':print_r(array[2]);break;
.....
....
...
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2014-04-30
展开全部
不就一个逻辑实现嘛
判断date是否不等于空 empty
然后定义下你的数组
$arr = array(
'0' => '22222',
'1'=> '11111'
)
然后根据URL的date参数获取数组内容
echo $arr[$date]
判断date是否不等于空 empty
然后定义下你的数组
$arr = array(
'0' => '22222',
'1'=> '11111'
)
然后根据URL的date参数获取数组内容
echo $arr[$date]
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询