首頁 >後端開發 >php教程 >xml php動態載入與分頁_PHP教學課程

xml php動態載入與分頁_PHP教學課程

WBOY
WBOY原創
2016-07-21 16:08:15800瀏覽

这是在看太平洋网的评论时看到的,太平洋网是用jsp做为后台语言,用来产生xml文件.然后在把数据绑定到html上的.我就用php也做了一个以下是源文件.

-----------------xml.htm------------------




xml



<script><BR> 函數跳轉(form)<BR> {<BR> if (form.pageNum.value>parseInt(pageCount.innerHTML)) return false;<BR> if (form.pageSize.value>parseInt(recordCount.innerHTML)) return false;<BR>  ?pageNo=" form.pageNum.value "&pageSize=" form.pageSize.value "&time=" (new Date()).getTime();<BR>  }<BR>  function pageCount_onpropertychange(form)<BR>  {<>  {<BR>   if (form.pageNum.value>parseInt(pageCount.innerHTML)) form.pageNum.value=parseInt(pageCount.innerHTML);<BR> if (form.pageSize.value>parseInt(recordCount.innerMLrecordCount.in) 表格單) .pageSize.value=parseInt(recordCount.innerHTML);<BR>    if(form.pageNum.value==1)<BR>    {<BR>      form.firstPage.disabled=true;<BR>      form.previousPage .disabled= true;<BR>    }<BR>    else<BR>    {<BR>      form.firstPage.disabled=false;<cp. <BR>    if(form.pageNum.value ==form.pageCount.value)<BR>    {<BR>      form.nextPage.disabled=true;<BR>      form.last <BR>      表單.nextPage.disabled=false;<BR>      form.lastPage.disabled=false;<BR>    }<BR>  }<BR></script>




















店铺列表
商铺名称 经营者 店铺级别 店铺简介
名称 经营人 级别 简介



每页显示
条,













-----------------xml.php------------------
//require_once "Source/Global.php";
function getVars($get_vars, $post_vars) {

$i = count($get_vars);
$j = count($post_vars);
if ($i > 0 && $j > 0 ) {
while(list($key, $val) = each($get_vars)) {
$Vars[$key] = $val;
}
while(list($key2, $val2) = each($post_vars)) {
$Vars[$key2] = $val2;
}
} elseif ($i > 0) {
while(list($key, $val) = each($get_vars)) {
$Vars[$key] = $val;
}
} elseif ($j > 0) {
while(list($key2, $val2) = each($post_vars)) {
$Vars[$key2] = $val2;
}
} else {
$Vars = array();
}
return $Vars;
}

$vars = getVars($HTTP_GET_VARS, $HTTP_POST_VARS);

//class shoplist_res extends iGlobal{
class shoplist_res{
function shoplist_res($vars,$cookie){
//$this->iGlobal($vars,$cookie);
$this->outPut($vars,$cookie);
}

 //function _shoplist_res(){
 // $this->db->Close();
 //}
    function outPut($vars,$cookie>{
$strQuery = "從".$this->db_c->Db_Pre."pshop order by id desc 選擇count(*) as rc";
  $this->db->Query($ strQuery);
$RecordCount = $this->db->Assoc();
  $RecordCount = $RecordCount['rc'];
  @$this->db->freeResult ();*/
  $RecordCount = 25;
  if (empty($vars['pageNo'])) $vars['pageNo']= 1;
  if (empty($vars['pageSize'])) $vars['pageSize ']= 10;
  $PageCount = ceil($RecordCount/$vars['pageSize']);
  if ($vars['pageSize']>$RecordCount) $vars['pageSize']=$ RecordCount;
  if ($vars['pageNo']>$PageCount) $vars['pageNo']=$PageCount;
  $xmlStr.= ""."n";
  $xmlStr.= "<商店清單>"."n";
  $xmlStr.= " t<翻頁工具pageNo="".$vars['pageNo ' ]."" pageSize="".$vars['pageSize']."" Total="".$RecordCount."">"."n";
  $xmlStr.= " t<頁號>".$vars['pageNo'].""."n";
  $xmlStr.= "t<頁大小>".$vars['pageSize'] . ""."n";
  $xmlStr.= "t<數量>; ".$RecordCount.""."n";
  $xmlStr.= "t<頁數>".$PageCount.""."n" ;
  / /$strQuery = "從".$this->db_c->Db_Pre."選擇t1.*,t2.*."pshop as t1,".$this->db_c->Db_Pre. "shoptype as t2 其中 t1.typenum=t2.typenum order by id desc "
  //   ."limit ".($vars['pageNo']-1)*$vars['pageSize']."," .$vars['pageSize'];
     //die($strQuery);
  //$this->db->Query($strQuery);
  /*while($result =this $ ->db->Assoc()){
   $xmlStr.= "t"."n";
   $xmlStr.= "t<商店>"."n";
   $xmlStr.= "tt<名稱>"."n";
   $xmlStr. = "tt<經營者>"."n";
   $xmlStr.= " tt<等級>< ![CDATA[".$result['shoptype']."]]>"."n";
   $xmlStr.= "tt<簡介> ;"."n";
   $xmlStr.= "tt<連接位址>< ![CDATA[personal_shop.php?id=".$result[' id']."]]>"."n";
   $xmlStr.= "t"."n";
  }*/
  $sc= $vars['pageNo']*$vars['pageSize'];
  if ($sc>$RecordCount) $sc = $RecordCount;
  for($i=($vars['pageNo']- 1)*$vars['pageSize'];$i<$sc;$i ){
   $xmlStr.= "t "."n";
   $xmlStr.= "t<商舖>". "n";
   $xmlStr.= "tt<名稱>   $xmlStr.= "tt<名稱> $i."]]>"."n";
   $xmlStr.= "tt<經營者>"."n";
   $xmlStr.= "tt<等級> ; " ."n";
   $xmlStr.= "tt<簡介"."n";
   $xmlStr . = "tt<連接位址> ;"."n";
   $xmlStr.= "t< /商店清單>"."n";
  }
  $xmlStr.= ""."n ";
  header("內容類型:text/xmlnn");
echo $xmlStr;    }

}

$shoplist = new shoplist_res($vars,$HTTP_COOKIE_VARS );
//$list->_$list_res()shop< sthoplist);?>



以上的php,註解是我連接資料庫取得的數據,既然放上來測試,也沒有資料庫連接,所以改一下。快就修改了xml,很多地方還是不太懂。