|
|
|
สั่งปริ้น แล้วเห็น a href ช่วยด้วยครับบบบ |
|
|
|
|
|
|
|
no code no idea
|
|
|
|
|
Date :
2017-08-30 22:00:07 |
By :
Chaidhanan |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Very well so same as Aj. Chaidhanan
Up to you
|
|
|
|
|
Date :
2017-08-31 08:40:45 |
By :
Bouasavanh HararRock |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<html>
<head>
<title>บันทึกการจ่ายเงินค่าไฟชั่วคราว</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<style type="text/css" media="print">
a{
print:none;
}
</style>
<style>
table {
border-collapse: collapse;
}
th, td {
padding: 8px;
}
tr:nth-child(even){background-color: #f2f2f2}
th {
background-color: #337ab7;
color: white;
}
input[type=text],input[type=date], select {
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
}
.a:visited {
text-decoration:none;
color: White;
}
a:link {
text-decoration:none;
}
/* mouse over link */
.a:hover {
color: Orange;
text-decoration:none;
}
</style>
</head>
<body>
<?php
$con = mysqli_connect('localhost', 'root', '12345678', 'bill');
//จำกัดหน้า 1 ห้ามเกิน 10 แถว
$perpage = 20;
if (isset($_GET['page']))
{
$page = $_GET['page'];
}
else
{
$page = 1;
}
$start = ($page - 1) * $perpage;
//เลือกแสดง โดยเรียงตามเวลาอัพโหลดมาหลังขึ้นก่อน
$sql = "select * from pay_bill ORDER BY `location_code` ASC limit {$start} , {$perpage}";
$query = mysqli_query($con, $sql);
?> <br>
<p><center><h2>บันทึกการจ่ายเงินค่าไฟชั่วคราว</h2>
<br>
<form action="search.php" method="post" name="search">
<p align=right>Search : <input type="text" size="20" name="search" class="btn btn-primary dropdown-toggle">
<input type="submit" value="search" class="btn btn-primary dropdown-toggle">
<input onclick="javascript:window.print()" type="button" value="Print" name="print2" class="btn btn-primary dropdown-toggle">
</form>
<br>
<div>
<table width=100%>
<tr>
<th width=5%><center>ลำดับ</th>
<th width=5%><center><a href=index.php class=a>Location code</a></th>
<th width=5%><center>Location name</th>
<th width=5%><center><a href=index2.php class=a>สถานะจ่ายเงิน</a></th>
<th width=5%><center>จ่ายค่าไฟ/เดือน</th>
<th width=30%><center>รายชื่อผู้ให้ใช้ไฟชั่วคราว</th>
<th width=10%><center>เบอร์ติดต่อ</th>
<th width=5%><center>รอบการจ่ายเงิน</th>
<th width=10%><center><a href=index3.php class=a>จ่ายเงินครั้งแรก</a></th>
<th width=10%><center><a href=index4.php class=a>ครบกำหนด</a></th>
<th width=5%><center>แก้ไข</th>
<th width=5%><center>ลบ</th>
</tr>
<?php
// $x แทนจำนวนไฟล์ทั้งหมด
$x = (($page -1) * $perpage)+1;
while ($result = mysqli_fetch_assoc($query)) {
?>
<tr>
<td><center><?php echo $x; ?></td>
<td><?php echo $result['location_code'];?></td>
<td><?php echo $result['location_name'];?></td>
<td><center><?php echo $result['status'];?></td>
<td><center><?php echo $result['pay_mounth'];?></td>
<td><?php echo $result['name'];?></td>
<td><center><?php echo $result['tel'];?></td>
<td><center><?php echo $result['round'];?></td>
<td><center><?php echo $result['fp'];?></td>
<td><center><?php echo $result['due'];?></td>
<td><center><a href="edit.php?bill_id=<?=$result["bill_id"];?>"><img src=pig/edit.png></a></td>
<td><center><a href="delete.php?bill_id=<?=$result["bill_id"];?>" onclick="return confirm('คุณแน่ใจแล้วหรอที่จะลบข้อมูลที่เลือก !')"><img src=pig/delete.png></a></center></td>
</tr>
<?php
$x++;}
?>
<?$x+1;?>
<tr>
<form name="form1" method="post" action="check.php">
<td><center><?php echo $x; ?></td>
<td><input type=text name=code size=5></td>
<td><input type=text name=name size=10></td>
<td><select name="status" > <option value="จ่ายเงินสด">จ่ายเงินสด</option>
<option value="โอนผ่านบัญชี">โอนผ่านบัญชี</option></td>
<td><input type=text name=b size=4 maxlength="4" ></td>
<td><input type=text name=n size=25></td>
<td><input type=text name=t size=11 maxlength="11"></td>
<td><input type=text name=r size=4 maxlength="2"></td>
<td><input type=date name=fp></td>
<td><input type=date name=due></td>
<td><center><input type="image" src="pig/edit.png" /></td>
</form>
</tr>
</table>
</div>
<?php
$sql2 = "select * from pay_bill ";
$query2 = mysqli_query($con, $sql2);
$total_record = mysqli_num_rows($query2);
$total_page = ceil($total_record / $perpage);
?>
<a href="index.php?page=1" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
<?php for($i=1;$i<=$total_page;$i++)
{
?>
<a href="index.php?page=<?php echo $i; ?>"><?php echo $i;?></a>
<?php
}
?>
<a href="index.php?page=<?php echo $total_page;?>" aria-label="Next">
<span aria-hidden="true">»</span></a>
<br><br>
<br><br><br><br>
<center><img src=pig/01.png width=20%>
</body>
</html>
|
|
|
|
|
Date :
2017-08-31 10:37:21 |
By :
arnan2018 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ทำเป็น PDF ก่อนสิ ไม่ยากหรอก
|
|
|
|
|
Date :
2017-08-31 10:48:06 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
code หลุดจาก tag รึเปล่า
|
|
|
|
|
Date :
2017-08-31 14:12:13 |
By :
ten1312 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เปิด tag <center> แล้วไม่ปิด
|
|
|
|
|
Date :
2017-08-31 15:26:50 |
By :
ดินทราย |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
สรุปลืมปิดแท็กสินะ
|
|
|
|
|
Date :
2017-08-31 16:09:40 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ถ้า Print จากหน้า html หรือหน้าเว็บปกติ ลองศึกษาเรื่อง css print media ครับ
|
|
|
|
|
Date :
2017-09-01 01:46:53 |
By :
Manussawin |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|