view.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 ("../userset/userlist.php");  //用户列表
  7.  include ("../basicset/fupaylist.php");  //付款方式
  8.  $t_JHMID=$_GET['JHMID'];
  9.  $t_AUTOID=$_GET['AUTOID'];
  10.  if (empty($t_AUTOID)){$t_AUTOID=0;};
  11.  $xtpl=new XTemplate ("view.html");
  12. $conn = phpmkr_db_connect(HOST, USER, PASS, DB, PORT);
  13.     $sSql ="select jhdmast.*,gongyins.ACC01 from jhdmast LEFT JOIN gongyins ON jhdmast.JHM02 = gongyins.ID where jhdmast.AUTOID= $t_AUTOID or jhdmast.JHMID= '$t_JHMID' ";
  14. //echo $sSql;
  15. $rs  = phpmkr_query($sSql,$conn) or die("Failed to execute query: " . phpmkr_error() . '<br>SQL: ' . $sSql);
  16.     $row = mysql_fetch_array($rs, MYSQL_ASSOC);
  17. $deltid=$row[JHMID];   //进货明细编号
  18. $row[JHM05]=getusername($row[JHM05]); //进货人
  19. $row[JHM10]=getfupayname($row[JHM10]); //付款方式
  20. $xtpl->assign("MAST",$row); /* assign array data */
  21.     $sSql ="select * from jhddelt where jhdid='".$deltid."'";
  22. $rs  = phpmkr_query($sSql,$conn) or die("Failed to execute query: " . phpmkr_error() . '<br>SQL: ' . $sSql);
  23. $i=1; //ROWNUM 行数
  24.     while($row = mysql_fetch_array($rs, MYSQL_ASSOC)){
  25. $xtpl->assign("ROWNUM",$i);
  26. $xtpl->assign("DATA",$row);
  27. $xtpl->parse("main.row");
  28. $i=$i+1;
  29. };
  30. $xtpl->assign("ROWTOTAL",$i-1);
  31. $xtpl->parse("main");
  32. $xtpl->out("main");
  33. ?>