$ourphptotal = $db -> listgo("count(id) as tiaoshu","`ourphp_user`","where `OP_Usersource` = '".$_SESSION['username']."'");
$ourphptotal = $db -> whilego($ourphptotal);
$query = $db-> listgo("`id`,`OP_Useremail`,`OP_Username`,`time`","`ourphp_user`","where `OP_Usersource` = '".$_SESSION['username']."' order by time desc LIMIT ".$start.",".$listpage);
$rows = array();
while($ourphp_rs = $db -> whilego($query)){
$rows[] = array(
'id' => $ourphp_rs[0],
'email' => $ourphp_rs[1],
'name' => $ourphp_rs[2],
'time' => $ourphp_rs[3],
);
}
$_page = new Page($ourphptotal['tiaoshu'],$listpage);