- 论坛徽章:
- 0
|
本帖最后由 leoxqing 于 2012-06-01 17:05 编辑
cpuload.php
<?php
include_once 'include/global.php';
include_once 'include/dbquery.php';
if(!empty($_POST['ip']) && !empty($_POST['time'])) {
$ip=$_POST['ip'];
$time=$_POST['time'];
#$sql="select ip,max(loadvalue) as maxvalue,round(avg(loadvalue),2) as avgload,date(start_time) as start_time,servertype as servertype from s_cpuload_stat where ip='$ip' and date(start_time)='$time' group by ip,date(start_time)order by 5";
$sql="select ip,max(loadvalue) as maxvalue,round(avg(loadvalue),2) as avgload,date(start_time) as start_time,servertype as servertype from s_cpuload_stat group by ip,date(start_time)order by 1";
$sth=new db_query($dsn, $database_username, $database_password);
$query=$sth->dbquery($sql);
}
else {
die("rows can't find\n");
}
foreach ($query as $rows) {
$ip=$rows['ip'];
$maxload=$rows['maxvalue'];
$avgload=$rows['avgload'];
$start_time=$rows['start_time'];
$servertype=$rows['servertype'];
$arr=array($rows['ip'],$rows['maxvalue'],$avgload=$rows['avgload'],$start_time=$rows['start_time'],$servertype=$rows['servertype']);
$string=json_encode($arr);
echo "$string";
}
?>
js接收数据(index.php):
function post(){
$.post("cpuload.php",{ip:$("#ip").val(),time:$("#time").val()},function(data){
var jsondata=eval("("+data+")");
foreach (var i=0;i<jsondata.length;i++) {
document.getElementById('ip1').innerHTML=data[0];
document.getElementById('maxvalue1').innerHTML=data[1];
document.getElementById('avgload1').innerHTML=data[2];
document.getElementById('start_time1').innerHTML=data[3];
document.getElementById('servertype1').innerHTML=data[4];
} })
}
红色部分循环无法正常赋值,求高手赐教,怎么才能正常处理php传递过来的数据? |
|