|
写的一段jsonp的代码 不知道什么问题 显示为乱码 而且seccha环境下只要一条乱码信息 请求大神帮忙看看
<?php
$mysql_servicer="localhost";//服务器名
$mysql_username="root";//数据库用户名
$mysql_passwrod="123456";//数据库密码
$mysql_database="dedecmsv57gbksp1"; //要连接的数据库名字
//连接数据库
$conntion=mysql_connect($mysql_servicer,$mysql_username,$mysql_passwrod) or die ("不能连接数据库:");
//从表中提取信息的sql语句
$sql="Select id,title From dede_archives limit 20";
//设置编码
mysql_query("set names gbk");
//执行sql查询
$result=mysql_db_query($mysql_database,$sql,$conntion) or die("查询失败!错误是:".mysql_error());
//返回多少条记录
$count=mysql_num_rows($result);
$row=mysql_fetch_array($result);
$callback = $_REQUEST['callback'];
while($row=mysql_fetch_array($result))
{
// Create the output object.
$output = array(id=>$row['id'],title=>$row['title']);
//start output
if ($callback) {
echo $callback . '(' . json_encode($output) . ');';
} else {
echo json_encode($output);
}
}
?>
|
|