baomoneylog.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?
  2. include("../config/conn.php");
  3. include("../config/function.php");
  4. sesCheck();
  5. ?>
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml">
  8. <head>
  9. <meta http-equiv="x-ua-compatible" content="ie=7" />
  10. <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
  11. <title>用户管理面板 - <?=webname?></title>
  12. <? include("cssjs.html");?>
  13. <link href="css/pay.css" rel="stylesheet" type="text/css" />
  14. </head>
  15. <body>
  16. <? include("../tem/top.html");?>
  17. <? include("top.php");?>
  18. <div class="yjcode">
  19. <? include("left.php");?>
  20. <!--RB-->
  21. <div class="userright">
  22. <!--白B-->
  23. <div class="rkuang">
  24. <? include("rcap15.php");?>
  25. <script language="javascript">
  26. document.getElementById("rcap1").className="l1 l2";
  27. </script>
  28. <ul class="bmlogcap">
  29. <li class="l1">时间</li>
  30. <li class="l2">金额</li>
  31. <li class="l3">收支</li>
  32. <li class="l4">说明</li>
  33. </ul>
  34. <?
  35. $ses=" where userid=".$luserid;
  36. $page=$_GET["page"];if($page==""){$page=1;}else{$page=intval($_GET["page"]);}
  37. pagef($ses,30,"yjcode_baomoneyrecord","order by sj desc");while($row=mysql_fetch_array($res)){
  38. ?>
  39. <ul class="bmloglist">
  40. <li class="l1"><?=$row[sj]?></li>
  41. <li class="l2"><?=$row[moneynum]?></li>
  42. <li class="l3"><? if($row[moneynum]>0){?><span class="blue">收入</span><? }else{?><span class="red">支出</span><? }?></li>
  43. <li class="l4"><?=$row[tit]?> <? if($row[zt]==1){?><span class="red">(系统正在审核)</span><? }?></li>
  44. </ul>
  45. <? }?>
  46. <div class="npa">
  47. <?
  48. $nowurl="baomoneylog.php";
  49. $nowwd="";
  50. require("page.php");
  51. ?>
  52. </div>
  53. <div class="clear clear15"></div>
  54. </div>
  55. <!--白E-->
  56. </div>
  57. <!--RE-->
  58. </div>
  59. <div class="clear clear15"></div>
  60. <? include("../tem/bottom.html");?>
  61. </body>
  62. </html>