usersetlist.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. $t_ORDER=$_GET['order'];
  6. if (empty($t_ORDER)){$t_ORDER="UID";}
  7. $xtpl=new XTemplate ("usersetlist.html");
  8. $conn = phpmkr_db_connect(HOST, USER, PASS, DB, PORT);
  9.     $sSql ="select * from user";
  10. $rs  = phpmkr_query($sSql,$conn) or die("Failed to execute query: " . phpmkr_error() . '<br>SQL: ' . $sSql);
  11.     while ($row = mysql_fetch_array($rs, MYSQL_ASSOC)) {
  12. $xtpl->assign("DATA",$row); /* assign array data */
  13. $xtpl->parse("main.table.row"); /* parse a row */
  14. }
  15. $xtpl->parse("main.table"); /* parse the table */
  16. $xtpl->parse("main");
  17. $xtpl->out("main");
  18. ?>