|
|
|
อยากทราบวิธีที่จะสั่งพิมพ์เฉพาะข้อมูลที่ทำการเลือกครับ(สั่งให้เปิดในexcelก่อนแล้วค่อยพิมพ์เอาอีกที) |
|
|
|
|
|
|
|
ผมทำการเลือกข้อมูลจากหน้าของผู้ใช้งานหน้านี้
มันก็เลือกได้นะครับซึ่งหลังจากเลือก มันจะแสดงข้อมูลเป็นหน้านี้
Code (PHP)
<?php
session_start();
if($_SESSION['UserID'] == "") //แสดงสถานะผู้ใช้งาน
{
echo "Please Login!";
exit();
}
if($_SESSION['Status'] != "member")
{
echo "This page for member only!";
exit();
}
$hostname_connection = "localhost";
$database_connection = "tot_project";
$username_connection = "root";
$password_connection = "root";
$tblname = "usertable"; //ชื่อตาราง
// เริ่มติดต่อฐานข้อมูล
mysql_connect($hostname_connection, $username_connection, $password_connection) or die("ติดต่อฐานข้อมูลไม่ได้");
// เลือกฐานข้อมูล
mysql_select_db($database_connection) or die("เลือกฐานข้อมูลไม่ได้");
$strSQL = "SELECT * FROM usertable WHERE UserID = '".$_SESSION['UserID']."' ";
$objQuery = mysql_query($strSQL);
$objResult = mysql_fetch_array($objQuery);
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<title>Simple Sidebar - Start Bootstrap Template</title>
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/simple-sidebar.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="wrapper">
<!-- Sidebar -->
<div id="sidebar-wrapper">
<ul class="sidebar-nav">
<li class="sidebar-brand">
<a href="#">
<?php echo $objResult["user"];?>
</a>
</li>
<li>
<a href="userBTOUT.php">ระบุข้อมูลขาออก</a>
</li>
<li>
<a href="userBTIN.php">ระบุข้อมูลขาเข้า</a>
</li>
<li>
<a href="userBTPAY.php">สั่งพิมพ์ข้อมูลค่าใช้จ่าย</a>
</li>
<li>
<a href="logout.php">logout</a>
</li>
</ul>
</div>
<!-- /#sidebar-wrapper -->
<!-- Page Content -->
<div id="page-content-wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<a href="#menu-toggle" class="btn btn-default" id="menu-toggle">เปิด / ปิด แถบเมนู </a>
<body>
<h1 align="center">ตารางแก้ไขข้อมูลขาเข้า(IMPORT)</h1>
<div align="center">
<form action="userBTreport01.php?ID_IN=<?php echo $_POST["Cnum_IN"]?>" name="USERreport" method="post">
<?php
$hostname_connection = "localhost";
$database_connection = "tot_project";
$username_connection = "root";
$password_connection = "root";
$connection = mysql_connect($hostname_connection,$username_connection,$password_connection,$database_connection) or die ("ติดต่อฐานข้อมูลไม่ได้");
mysql_query("SET NAMES utf-8");
mysql_select_db($database_connection) or die ("เลือกฐานข้อมูลไม่ได้");
?>
<?php
$sql = "SELECT *,Num_IN,NUM_OUT,Num_IN-Num_OUT AS MIL , LIT_IN,PPL_IN,LIT_IN*PPL_IN AS price_IN FROM driver_datain INNER JOIN driver_dataOUT ON driver_dataIN.Cnum_IN = driver_dataOUT.Cnum_OUT where Cnum_IN = '".$_GET['ID_IN']."'";
$query = mysql_query($sql) or die ("sql Error [".$sql."]");
if(!$query)
{
echo "Not found Cnum_IN=".$_POST["Cnum_IN"];
}
else
{
?>
<? date_default_timezone_set('Asia/Bangkok');
$date = date("Y-m-d");
$time = date("H:i:s"); ?>
<table width="600" border="1">
<tr align="center">
<th width="auto"> <div align="center">ชื่อ </div></th>
<th width="auto"> <div align="center">ทะเบียนรถ </div></th>
<th width="auto"> <div align="center">วันที่ </div></th>
<th width="auto"> <div align="center">เวลา </div></th>
<th width="auto"> <div align="center">เลขไมล์ </div></th>
<th width="auto"> <div align="center">จำนวนลิตรที่เติม </div></th>
<th width="auto"> <div align="center">ราคาต่อลิตร </div></th>
<th width="auto"> <div align="center">รวม </div></th>
</tr>
<?php
while($row = mysql_fetch_array($query))
{
?>
<tr align="center">
<td><div align="center"><input type="text" name ="Fname_IN" size=" 5" value="<?php echo $row["Fname_IN"];?>"></div></td>
<td><div align="center"><input type="text" name ="Cnum_IN" size=" 10" value="<?php echo $row["Cnum_IN"];?>"></div></td>
<td><div align="center"><input type="date" name ="Date_IN" size=" 5" value="<?php echo $date;?>"></div></td>
<td><div align="center"><input type="time" name ="Time_IN" size=" 5" value="<?php echo $time;?>"></div></td>
<td><div align="center"><input type="text" name ="Num_IN" size=" 5" value="<?php echo $row["MIL"];?>"></div></td>
<td><div align="center"><input type="text" name ="LIT_IN" size=" 20" value="<?php echo $row["LIT_IN"];?>"></div></td>
<td><div align="center"><input type="text" name ="PPL_IN" size=" 10" value="<?php echo $row["PPL_IN"];?>"></div></td>
<td><div align="center"><input type="text" name ="Price" size=" 10" value="<?php echo substr($row['price_IN'],0,6); ?>"></div></td>
</tr>
<?php } ?>
<?php } ?>
</table>
<td><div align="center"><a href="userBTreport01.php?ID_IN=<?php echo $row['Cnum_IN']?>">สั่งพิมพ์</a></div></td>
</div>
</div>
</div>
</div>
<!-- /#page-content-wrapper -->
</div>
<!-- /#wrapper -->
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Menu Toggle Script -->
<script>
$("#menu-toggle").click(function(e) {
e.preventDefault();
$("#wrapper").toggleClass("toggled");
});
</script>
</body>
</html>
ซึ่งจุดนี้แหละครับที่อยากทราบคือ ต้องการให้มันพิมพ์ข้อมูลเฉพาะส่วนนี้ แต่มันดันดึงข้อมูลออกมาหมดเลย
Code (PHP)
<?
header("Content-type: application/vnd.ms-excel");
// header('Content-type: application/csv'); //*** CSV ***//
header("Content-Disposition: attachment; filename=testing.xls");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<h1 align="center"> ตารางค่าใช้จ่ายในการเติมน้ำมัน</h1>
</head>
<body>
<table cellpadding="5" cellspacing="5" border="2" class="display" id="example" >
<tr>
<tr >
<th>ชื่อ</th>
<th>เลขทะเบียนรถ</th>
<th>วันที่สั่งพิมพ์</th>
<th>เวลาที่สั่งพิมพ์</th>
<th>เลขไมล์สุทธิ</th>
<th>จำนวนลิตรที่เติม</th>
<th>ราคาต่อลิตร</th>
<th>รวม</th>
</tr>
</tr>
<?php
$hostname_connection = "localhost";
$database_connection = "tot_project";
$username_connection = "root";
$password_connection = "root";
$connection = mysql_pconnect($hostname_connection, $username_connection, $password_connection) or trigger_error(mysql_error(),E_USER_ERROR);
mysql_select_db($database_connection) or die ("เลือกฐานข้อมูลไม่ได้");
mysql_query("SET NAMES UTF-8");
?>
<?php
$sql = "SELECT *,Num_IN,NUM_OUT,Num_IN-Num_OUT AS MIL , LIT_IN,PPL_IN,LIT_IN*PPL_IN AS price_IN FROM driver_datain INNER JOIN driver_dataOUT ON driver_dataIN.Cnum_IN = driver_dataOUT.Cnum_OUT where Cnum_IN like '%$txt_search%' OR Cnum_OUT like '%$txt_search%' order BY ID_IN ASC";
$query = mysql_query($sql) or die(mysql_error());
date_default_timezone_set('Asia/Bangkok');
$date = date("Y-m-d");
$time = date("H:i:s");
?>
<?php while($row = mysql_fetch_array($query)){
?>
<tr>
<tr align="center">
<td><font size="+1"><?php echo $row['Fname_IN']?></font></td>
<td><font size="+1"><?php echo $row['Cnum_IN']?></font></td>
<td><font size="+1"><?php echo $date?></td>
<td><font size="+1"><?php echo $time?></td>
<td><font size="+1"><?php echo $row['MIL']?></td>
<td><font size="+1"><?php echo $row['LIT_IN']?></td>
<td><font size="+1"><?php echo $row['PPL_IN']?></td>
<td><font size="+1"><?php echo substr($row['price_IN'],0,6); ?></td>
</tr>
<?php } ?>
</tr>
</div>
</table>
<div class="spacer"></div>
</table>
</div>
</div>
</div>
</div>
<!-- /#page-content-wrapper -->
</div>
<!-- /#wrapper -->
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
<!-- Menu Toggle Script -->
<script>
$("#menu-toggle").click(function(e) {
e.preventDefault();
$("#wrapper").toggleClass("toggled");
});
</script>
</body>
</html>
//จึงอยากทราบวิธีที่จะให้มันพิมพ์ข้อมูลเฉพาะส่วนครับ
Tag : PHP, MySQL
|
|
|
|
|
|
Date :
2015-10-26 10:17:30 |
By :
lnwteezaa |
View :
937 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ส่ง Link ไปอีกหน้าหนึ่งครับ แล้วดึงเฉพาะข้อมูลที่ต้องการ
CSS Page Break on Printing
ถ้าต้องการ Format แบบเปะ ๆ อาจจะต้องใช้ PDF ครับ
|
|
|
|
|
Date :
2015-10-26 13:26:52 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|