editview.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_AUTOID=$_GET['AUTOID'];
  6.  if (empty($t_AUTOID)){$t_AUTOID=0;};
  7.  $xtpl=new XTemplate ("editview.html");
  8. $conn = phpmkr_db_connect(HOST, USER, PASS, DB, PORT);
  9.     $sSql ="select * from gongyins where AUTOID=".$t_AUTOID;
  10. $rs  = phpmkr_query($sSql,$conn) or die("Failed to execute query: " . phpmkr_error() . '<br>SQL: ' . $sSql);
  11.     $row = mysql_fetch_array($rs, MYSQL_ASSOC);
  12. $deltid=$row[SHMID];   //閫佽波鏄庣窗绶ㄨ櫉
  13. $xtpl->assign("DATA",$row); /* assign array data */
  14. $xtpl->parse("main");
  15. $xtpl->out("main");
  16. ?>