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.  include ("../inc/nocache.php");
  6.  include ("../basicset/userlist.php");  //用户列表
  7.  include ("../basicset/fupaylist.php");  //付款方式
  8.  $t_AUTOID=$_GET['AUTOID'];
  9.  if (empty($t_AUTOID)){$t_AUTOID=0;};
  10.  $xtpl=new XTemplate ("editview.html");
  11. $conn = phpmkr_db_connect(HOST, USER, PASS, DB, PORT);
  12.     $sSql ="select shdmast.*,accounts.ACC01 from shdmast LEFT JOIN accounts ON shdmast.SHM02 = accounts.ID where shdmast.AUTOID= $t_AUTOID ";
  13. $rs  = phpmkr_query($sSql,$conn) or die("Failed to execute query: " . phpmkr_error() . '<br>SQL: ' . $sSql);
  14.     $row = mysql_fetch_array($rs, MYSQL_ASSOC);
  15. $deltid=$row[SHMID];   //送货明细编号
  16. $xtpl->assign("MAST",$row); /* assign array data */
  17. $xtpl->assign("pshm03USERINFO",getuserlist('pshm03',$row[SHM03])); //送货人
  18. $xtpl->assign("pshm04USERINFO",getuserlist('pshm04',$row[SHM04])); //开单人
  19. $xtpl->assign("pshm10USERINFO",getfupaylist('pshm10',$row[SHM10])); //传款方式
  20.     $sSql ="select * from shddelt where shdid='".$deltid."'";
  21. $rs  = phpmkr_query($sSql,$conn) or die("Failed to execute query: " . phpmkr_error() . '<br>SQL: ' . $sSql);
  22. $i=1; //ROWNUM 行数
  23.     while($row = mysql_fetch_array($rs, MYSQL_ASSOC)){
  24. $xtpl->assign("ROWNUM",$i);
  25. $xtpl->assign("DATA",$row);
  26. $xtpl->parse("main.row");
  27. $i=$i+1;
  28. };
  29. $xtpl->assign("ROWTOTAL",$i-1);
  30. $xtpl->parse("main");
  31. $xtpl->out("main");
  32. ?>