Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
home
/
egg.eemo.co.kr
/
public_html
/
super5
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/egg.eemo.co.kr/public_html/super5/order_jupsu_print.php
<? session_cache_limiter('no-cache, must-revalidate'); session_start(); header("Pragma: no-cache"); header("Cache-Control: no-cache,must-revalidate"); header("Content-Type: text/html; charset=utf-8"); foreach($_GET as $key => $value) { ${$key}=$value; } include_once("dbconn.php"); include_once("lib.php"); $exp=explode("&",$str_val); ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title><?=$_TITLE?></title> <link href="css/bootstrap.min.css" rel="stylesheet"> <link href="font-awesome/css/font-awesome.css" rel="stylesheet"> <link href="css/animate.css" rel="stylesheet"> <link href="css/style.css" rel="stylesheet"> </head> <body class="canvas-menu"> <div id="wrapper"> <div id="page-wrapper" class="gray-bg"> <div class="row border-bottom"> </div> <div class="wrapper wrapper-content animated fadeInRight"> <div class="row"> <div class="col-lg-12"> <div class="ibox "> <div class="ibox-content"> <div class="table-responsive"> <table class="table table-bordered" > <thead> <tr> <th>순번</th> <th>바코드</th> <th>구매자정보</th> </tr> </thead> <tbody> <? $i=1; foreach($exp as $ak => $av) { $rs=RS("select * from order_jupsu where no='$av' "); ?> <tr> <td><?=number_format($i)?></td> <td> <?if($rs[z_serial]) {?> <img src="barcode.php?text=<?=$rs[z_serial]?>" width='180' height='30'/> <h3><?=$rs[z_serial]?></h3> <?}?> </td> <td> <b>구매자</b> : <?=$rs[order_name]?><br> <b>주소</b> : <?=$rs[suryung_addr]?><br> <b>연락처</b> : <?=$rs[suryung_cel]?><br> <b>주문일자</b> : <?=date('Y-m-d',strtotime($rs[order_time]))?> <b>송장번호</b> : <?=$rs[songjang]?> </td> </tr> <?$i++;}?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> </div> <!-- Mainly scripts --> <script src="js/jquery-3.1.1.min.js"></script> <script src="js/popper.min.js"></script> <script src="js/bootstrap.js"></script> <script src="js/plugins/metisMenu/jquery.metisMenu.js"></script> <script src="js/plugins/slimscroll/jquery.slimscroll.min.js"></script> <!-- Custom and plugin javascript --> <script src="js/inspinia.js"></script> <script src="js/plugins/pace/pace.min.js"></script> <script> $('body.canvas-menu .sidebar-collapse').slimScroll({ height: '100%', railOpacity: 0.9 }); </script> </body> </html> <script> window.print(); </script>