list.php
上传用户:yantgcom
上传日期:2013-07-19
资源大小:478k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

PHP

  1. <?php
  2.  include ("../inc/db.php");
  3.  include ("../inc/phpmkrfn.php");
  4.  include ('../inc/xtpl.php');
  5.  include("../inc/pageft.php");
  6. $t_ORDER=$_GET['order'];
  7. if (empty($t_ORDER)){$t_ORDER="ID";}
  8. $xtpl=new XTemplate ("listview.html");
  9. $conn = phpmkr_db_connect(HOST, USER, PASS, DB, PORT);
  10. //总页数
  11. $sSql ="select AUTOID from accounts";
  12. $result=phpmkr_query($sSql,$conn);
  13. $total=phpmkr_num_rows($result);
  14. //调用pageft(),每页显示10条信息(使用默认的20时,可以省略此参数),使用本页URL(默认,所以省略掉)。
  15. pageft($total,15);
  16.     $sSql ="select * from accounts order by $t_ORDER limit $firstcount,$displaypg";
  17. $rs  = phpmkr_query($sSql,$conn) or die("Failed to execute query: " . phpmkr_error() . '<br>SQL: ' . $sSql);
  18.     while ($row = mysql_fetch_array($rs, MYSQL_ASSOC)) {
  19. $xtpl->assign("DATA",$row); /* assign array data */
  20. $xtpl->parse("main.table.row"); /* parse a row */
  21. }
  22. $xtpl->parse("main.table"); /* parse the table */
  23. $xtpl->assign("PAGEINFO",$pagenav);   //分页
  24. $xtpl->parse("main");
  25. $xtpl->out("main");
  26. //echo $pagenav;
  27. //include("../debug.php");
  28. ?>