新手请问.get方法怎么使用
时间:2021-07-01 10:21:17
帮助过:53人阅读
新手请教.get方法如何使用
刚学jquery,试了一个例子,有两个页面index.html,data.php,但每次执行都显示的都是乱码,请问该怎么办?
index.html
New Document
data.php
if($_GET['what']=='good')
{
$names=array('Sherlock Helmes','John Watson','Hercule Poirot','Jane Marple');
echo getHTML($names);
}
else if($_GET['what']=='bad')
{
$names=array('Professor Moriarty','Sebastian Moran','Charles Milverton','Von Bork','Count Sylvius');
echo getHTML($names);
}
function getHTML($names)
{
$strResult='
';
for($i=0;$i
{
$strResult.='- '.$names[$i].'
';
}
$strResult.='
';
return $strResult;
}
?>
分享到:
------解决方案--------------------没有配置php的环境