|
|
|
ขอวิธีการดึง ฐานข้อมูลออกมาเป็นรายวัน เนื่องจากที่เขียนออกมาทีเดียว |
|
|
|
|
|
|
|
อ่านยากสุดๆ
ดูโค๊ดแล้ว โบราณสุดๆ
เขียนใหม่เถอะ
อีกอย่าง database ก็ไม่เอามาบอก
|
|
|
|
|
Date :
2016-03-10 16:26:07 |
By :
compiak |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
เอา code ใส่แท็ก PHP CODE เถอะจร้า จะได้อ่านรู้เรื่อง
|
|
|
|
|
Date :
2016-03-10 17:47:58 |
By :
apisitp |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<head>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<title>:: show data ::</title>
<style>
BODY {
FONT-FAMILY: Arial, Helvetica, sans-serif
}
</style>
<script Language="Javascript">
<!--
function Conf(object) {
if (confirm("you need to delete?") == true) {
return true;
}
return false;
}
//-->
</script>
</head>
<body>
<p align="center">
<font size="3"><<
<a href="index.php">home</a> >> </font>
<p align="center"><u><b><font size="5" color="#800000">booking list </font></b></u></p> </p>
<center>
<?php ob_start(); ?>
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="95%" id="AutoNumber1">
<tr>
<td width="5%" bgcolor="#66FF66" align="center">
<b><font color="#000080">ID</font></b></td>
<td width="20%" bgcolor="#CCFFFF" align="center">
<p align="center"><b><font color="#000080">name</font></b></p></td>
<td width="10%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">booking</font></b></td>
<td width="40%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">day</font></b></td>
<td width="40%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">month</font></b></td>
<td width="40%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">year</font></b></td>
<td width="40%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">phone</font></b></td>
<td width="40%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">email</font></b></td>
<td width="40%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">massage</font></b></td>
<td width="5%" bgcolor="#FF99FF" align="center"><b>
<font color="#000080">edit</font></b></td>
<td width="5%" bgcolor="#CCFFFF" align="center"><b>
<font color="#000080">delete</font></b></td>
</tr>
<?php $tb_head = ob_get_clean(); ?>
<?php
include("config.inc.php");
// คำสั่ง SQL ที่ใช้ในการเลือกข้อมูลที่อยู่ในฐานข้อมูลกลับมา (เรียงตามลำดับ ID)
$result = mysql_query("select * from member order by id");
$date = null;
/* ในลูปด้านล่าง เทียบได้กับการดึงข้อมูลมาทีละ 1 Record เพื่อนำมาแสดงผลทางหน้าจอ */
while ($dbarr = mysql_fetch_array($result)) {
$currentDate = $dbarr['day'].'/'.$dbarr['month'].'/'.$dbarr['year'];
if ($date != $currentDate){
if (is_null($date)===false){
echo '</table>';
}
$date = $currentDate;
echo "วันที่ $date $tb_head";
}
?>
<tr>
<td width="5%" bgcolor="#66FF66" align="center"><?php echo $dbarr['id']; ?></td>
<td width="10%" bgcolor="#CCCCFF" align="center"><?php echo $dbarr['name']; ?></td>
<td width="6%" bgcolor="#CCCCFF" align="center"><?php echo $dbarr['booking']; ?></td>
<td width="10%" bgcolor="#FF33CC" align="center"><?php echo $dbarr['day']; ?></td>
<td width="10%" bgcolor="#CCCCFF" align="center"><?php echo $dbarr['month']; ?></td>
<td width="10%" bgcolor="#CCCCFF" align="center"><?php echo $dbarr['year']; ?></td>
<td width="10%" bgcolor="#CCCCFF" align="center"><?php echo $dbarr['phone']; ?></td>
<td width="10%" bgcolor="#CCCCFF" align="center"><?php echo $dbarr['email']; ?></td>
<td width="15%" bgcolor="#CCCCFF" align="center"><?php echo $dbarr['text']; ?></td>
<td width="5%" bgcolor="#FF99FF" align="center"><center><a href="editdata.php?id=<?= $dbarr['id']; ?>"><img src="edit.gif" width="15" height="15" border="0"></a></center></td>
<td width="5%" bgcolor="#FFFF66" align="center"><center><a href="deletedata.php?id=<?= $dbarr['id']; ?>" OnClick="return Conf(this)"><img src="delete.jpg" width="15" height="15" border="0"></a></center></td>
</tr>
<?php
}
?>
</table>
</center>
</body>
|
ประวัติการแก้ไข 2016-03-10 20:12:06
|
|
|
|
Date :
2016-03-10 20:08:24 |
By :
num |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|