getlist.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_jspath=$_GET[jspath];
  6. $t_jsname=$_GET[jsname];
  7. $xtpl=new XTemplate ("getlist.html");
  8. $conn = phpmkr_db_connect(HOST, USER, PASS, DB, PORT);
  9.     $sSql ='select * from gongyins';
  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->assign("JSPATH",$t_jspath); /* assign array data */
  17. $xtpl->assign("JSNAME",$t_jsname); /* assign array data */
  18. $xtpl->parse("main");
  19. $xtpl->out("main");
  20. ?>