|
|
|
สอบถามการแบ่งหน้าปริ้นข้อมูลต่อเนื่องครับ รายละเอียดด้านในเลยจร้า |
|
|
|
|
|
|
|
สอบถามการแบ่งหน้าปริ้นข้อมูลต่อเนื่องครับ ผมต้องการให้ข้อมูลที่อยู่ในตารางพอหมดหน้าแล้วก็ขึ้นหน้าใหม่โดยข้อมูลจะเปลี่ยนแค่ในตารางเท่านั้น จะต้องทำยังไงหรอครับ โค้ดด้านล่างนี้ผมนำมาจาก
เอามาแล้วมึนทำงง
Code (PHP)
<?php
session_start();
ob_start();
if(!isset($_SESSION['username'])){
header('Location: index.php');
exit();
}
?>
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>ตารางการปฏิบัติหน้าที่เวรประจำศูนย์</title>
<style type="text/css">
* {
margin:0;
padding:0;
font-family:Arial, "times New Roman", tahoma;
font-size:12px;
}
html {
font-family:Arial, "times New Roman", tahoma;
font-size:12px;
color:#000000;
}
body {
font-family:Arial, "times New Roman", tahoma;
font-size:12px;
padding:0;
margin:0;
color:#000000;
}
.headTitle {
font:"Angsana New", AngsanaUPC;
font-size:14px;
font-weight:bold;
text-transform:uppercase;
}
.menuTitle {
font:"Angsana New", AngsanaUPC;
font-size:14px;
text-transform:uppercase;
}
.headerTitle01 {
border:1px solid #333333;
border-left:1px solid #000;
border-bottom-width:1px;
border-top-width:1px;
}
#headerTitle01 {
border:1px solid #333333;
border-left:1px solid #000;
border-bottom-width:1px;
border-top-width:1px;
}
.headerTitle01_r {
border:1px solid #333333;
border-left:2px solid #000;
border-right:2px solid #000;
border-bottom-width:2px;
border-top-width:2px;
font-size:11px;
}
/* สำหรับช่องกรอกข้อมูล */
.box_data1 {
font-family:Arial, "times New Roman", tahoma;
height:18px;
border:0px dotted #333333;
border-bottom-width:1px;
}
/* กำหนดเส้นบรรทัดซ้าย และด้านล่าง */
.left_bottom {
border-left:2px solid #000;
border-bottom:1px solid #000;
}
/* กำหนดเส้นบรรทัดซ้าย ขวา และด้านล่าง */
.left_right_bottom {
border-left:2px solid #000;
border-bottom:1px solid #000;
border-right:2px solid #000;
}
/* สร้างช่องสี่เหลี่ยมสำหรับเช็คเลือก */
.chk_box {
display:block;
width:10px;
height:10px;
overflow:hidden;
border:1px solid #000;
}
/* css ส่วนสำหรับการแบ่งหน้าข้อมูลสำหรับการพิมพ์ */
@media all
{
.page-break { display:none; }
.page-break-no{ display:none; }
}
@media print
{
.page-break { display:block;height:1px; page-break-before:always; }
.page-break-no{ display:block;height:1px; page-break-after:avoid; }
}
</style>
</head>
<body>
<?php
include("../include/connect.php");
include("../function/function_date.php");
include("../function/position.php");
if($_GET['m'] != ''){
$sql_query=mysql_query("SELECT * FROM tb_operation WHERE operation_days like '".date('Y')."-".$mount."%' AND id_member =".$_SESSION['id_member']);
$num_sea=mysql_num_rows($sql_query);
}
?>
<?php for($i=1;$i <=3;$i++){ ?>
<div class="page-break<?=($i==1)?"-no":""?>"></div>
<table width="750" align="center" border="0" cellspacing="0" cellpadding="0">
<tr>
<td> </td>
</tr>
<tr>
<td class="headTitle" align="center"><img src="../imgs/02.jpg" width="114" height="153"></td>
</tr>
<tr>
<td class="headTitle" align="center">ตารางการปฏิบัติหน้าที่เวรประจำศูนย์</td>
</tr>
<tr>
<td align="center" class="headTitle">ศูนย์กู้ชีพและบรรเทาสารณภัย สังกัดองค์การบริหารส่วนตำบลวังไทร</td>
</tr>
<tr>
<td align="right" class="menuTitle"> </td>
</tr>
<tr>
<td align="right" class="menuTitle"><?=$_SESSION['prename']?><?=$_SESSION['name']?> <?=$_SESSION['lname']?> เจ้าหน้าที่
<?=mem($_SESSION['position'])?></td>
</tr>
<tr>
<td> </td>
</tr>
<tr>
<td><table width="750" border="0" align="center" cellpadding="2" cellspacing="0">
<tr>
<td width="374" align="center" bgcolor="#CCCCCC" class="headTitle" id="headerTitle01">วันที่</td>
<td width="368" align="center" bgcolor="#CCCCCC" class="headTitle" id="headerTitle01">เวลา</td>
</tr>
<? while($rows=mysql_fetch_array($sql_query)){ ?>
<?
$date=$rows[operation_days];
$result_date=strtotime($date);
?>
<tr>
<td class="menuTitle" id="headerTitle01"> <?=thai_date($result_date)?></td>
<td align="center" class="menuTitle" id="headerTitle01"><?=$rows[operation_time]?></td>
<? } ?>
</tr>
</table></td>
</tr>
<tr>
<td> </td>
</tr>
</table>
<? } ?>
<script>
window.print();
</script>
</body>
</html>
Tag : PHP, JavaScript, jQuery, CakePHP
|
|
|
|
|
|
Date :
2013-09-04 14:57:00 |
By :
wichasit |
View :
2517 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2013-09-05 06:37:15 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|