Register Register Member Login Member Login Member Login Forgot Password ??
PHP , ASP , ASP.NET, VB.NET, C#, Java , jQuery , Android , iOS , Windows Phone
 

Registered : 109,038

HOME > PHP > PHP Forum > หาจำนวนวันครับ ติดอะไม่รู้ครับ ช่วยดูโค๊ดให้ทีครับทำตัวหนาให้แล้วนะคับช่วยทีครับ ขอบคุณครับ



 

หาจำนวนวันครับ ติดอะไม่รู้ครับ ช่วยดูโค๊ดให้ทีครับทำตัวหนาให้แล้วนะคับช่วยทีครับ ขอบคุณครับ

 



Topic : 029675

Guest




<?php require_once('config_admin.php'); ?>
<?php require_once('../Connections/connresort.php'); ?>

<?php
$book_ID = $_GET["book_ID"];
mysql_select_db($database_connresort, $connresort);
$query_rsReport = "SELECT * FROM bookings,clients,room,roomtype WHERE bookings.room_ID=room.room_ID AND bookings.clients_ID=clients.clients_ID AND bookings.roomtype_ID=roomtype.roomtype_ID AND bookings.book_ID='$book_ID'";
$rsReport = mysql_query($query_rsReport, $connresort) or die(mysql_error());
$row_rsReport = mysql_fetch_assoc($rsReport);
$totalRows_rsReport = mysql_num_rows($rsReport);

mysql_select_db($database_connresort, $connresort);
$query_rsAccount = "SELECT price FROM account WHERE book_ID='$book_ID'";
$rsAccount = mysql_query($query_rsAccount, $connresort) or die(mysql_error());
$row_rsAccount = mysql_fetch_assoc($rsAccount);
$totalRows_rsAccount = mysql_num_rows($rsAccount);
?>


<script language="JavaScript" type="text/JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
<style type="text/css">
<!--
.style8 {font-size: 14px}
.style15 {font-size: 14px; font-family: Geneva, Arial, Helvetica, sans-serif; }
.style24 {font-size: 10}
.style29 {font-size: 14; font-family: Geneva, Arial, Helvetica, sans-serif; }
.style30 {font-size: 14}
.style31 {font-size: 12px}
.style35 {font-size: 12px; font-family: Geneva, Arial, Helvetica, sans-serif; }
.style36 {font-size: 12}
-->
</style>
<p>&nbsp;</p>
<table width="60%" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#6699FF">
<tr>
<td><div align="center" class="style15">รายงานผลการจองห้องพัก</div></td>
</tr>
<tr>
<td><br> <table width="90%" border="1" align="center" cellpadding="0" cellspacing="0">
<tr bgcolor="#FFFFCC">
<td colspan="2" class="style8"><span class="style36">ประวัติผู้จอง</span></span></td>
</tr>
<tr>
<td width="31%" class="style8"><span class="style36">ชื่อ -นามสกุล</span></td>
<td width="69%" class="style8"><span class="style36">คุณ <?php echo $row_rsReport['firstname']; ?> <?php echo $row_rsReport['lastname']; ?></span></td>
</tr>
<tr>
<td class="style8"><span class="style36"> ที่อยู่ </span></td>
<td class="style8"><span class="style36"><?php echo $row_rsReport['address1']; ?>อำเภอ<?php echo $row_rsReport['province']; ?> จังหวัด <?php echo $row_rsReport['city']; ?>ประเทศ <?php echo $row_rsReport['country']; ?>รหัสไปรษณีย์ <?php echo $row_rsReport['zipcode']; ?></span></td>
</tr>
<tr>
<td class="style8"><span class="style36"> เบอร์โทรศัพท์ </span></td>
<td class="style8"><span class="style36"><?php echo $row_rsReport['tel']; ?></span></td>
</tr>
<tr>
<td class="style8"><span class="style36"> อีเมล์ </span></td>
<td class="style8"><span class="style36"><?php echo $row_rsReport['email']; ?></span></td>
</tr>
</table>
<br>
<table width="90%" border="1" align="center" cellpadding="0" cellspacing="0">
<tr bgcolor="#FFFFCC">
<td colspan="2" class="style8"><span class="style36"> รายละเอียดการจอง </span></td>
</tr>
<tr>
<td width="31%" class="style8"><span class="style36"> จองวันที่ </span></td>
<td width="69%" class="style8"><span class="style36"><?php echo dateThai($row_rsReport['created']); ?></span></td>
</tr>
<tr>
<td class="style8"><span class="style36">เริ่มจองตั้งแต่วันที่ </span></td>
<td class="style8"><span class="style36"><?php echo dateThai($row_rsReport['startdate']); ?>ถึงวันที่ <?php echo dateThai($row_rsReport['enddate']); ?></span></td>
</tr>

<tr>
<td class="style8"><span class="style36">จำนวนวันที่เข้าพัก </span></td>
<td class="style8"><span class="style36"><?php echo ($row_rsReport['startdate']-$row_rsReport['enddate']); ?> วัน</span></td>///// แก้ยังไงครับ ช่วยทีนะครับ
</tr>
</table>

<br>
<table width="90%" border="1" align="center" cellpadding="0" cellspacing="0">
<tr bgcolor="#FFFFCC">
<td colspan="2" class="style8"><span class="style31"> รายละเอียดห้องพัก</span></td>
</tr>
<tr>
<td class="style8"><span class="style31">หมายเลขการจอง</span></td>
<td class="style8"><span class="style31"><?php echo $row_rsReport['book_ID']; ?></span></td>
</tr>
<tr>
<td width="31%" class="style8"><span class="style31">หมายเลขห้อง</span></td>
<td width="69%" class="style8"><span class="style31"><?php echo $row_rsReport['number']; ?></span></td>
</tr>
<tr>
<td class="style8"><span class="style31">ชนิดห้อง</span></td>
<td class="style8"><span class="style31"><?php echo $row_rsReport['name']; ?></span></td>
</tr>
<tr>
<td class="style8"><span class="style31">จำนวนเตียง</span></td>
<td class="style8"><span class="style31"><?php echo $row_rsReport['bed']; ?>เตียง</span></td>
</tr>
<tr valign="top">
<td class="style8"><span class="style31">รายละเอียดห้อง</span></td>
<td class="style8"><span class="style31"><?php echo $row_rsReport['description']; ?></span></td>
</tr>
<tr>
<td class="style8"><span class="style31">ราคา</span></td>
<td class="style8"> <span class="style31"><?php echo intToMoney($row_rsReport['price']); ?>บาท </span></td>
</tr>
</table>
<br>
<table width="90%" border="1" align="center" cellpadding="0" cellspacing="0">
<tr bgcolor="#FFFFCC">
<td colspan="2"><span class="style24">่<strong class="style8">จำนวนเงิน</strong></span></td>
</tr>

<tr>
<td width="72%"><div align="right" class="style29 style31">ราคารวมทั้งหมดที่ต้องชำระ</div></td>
<td width="28%"> <div align="right" class="style35"><?php echo intToMoney($row_rsAccount['price']); ?><span style="">บาท</span> </div></td>
</tr>
<tr>
<td><div align="right" class="style35">จำนวนเงินมัดจำที่ต้องชำระก่อน </div></td>
<td width="28%"><div align="right" class="style35"> <?php echo intToMoney($row_rsAccount['price']*0.3); ?>บาท</div></td>
</tr>
<tr>
<td><span class="style30"></span></td>
<td width="28%"><span class="style30"></span></td>
</tr>
</table>
<div align="center">
<p>
<input name="Button" type="button" onclick="MM_openBrWindow('../clients/detail_reserve.php?book_ID=<?=$book_ID ?>&amp;clients_ID=<?php echo $row_rsReport['clients_ID']; ?>','','width=530,height=620')" value="พิมพ์ใบการจอง">
</p>
<p>&nbsp; </p>
</div>
</td>
</table>

<?php
mysql_free_result($rsReport);

mysql_free_result($rsAccount);
?>
<p>&nbsp; </p>



Tag : - - - -







Move To Hilight (Stock) 
Send To Friend.Bookmark.
Date : 2009-07-29 00:08:14 By : Eroz View : 1013 Reply : 4
 

 

No. 1



โพสกระทู้ ( 5,149 )
บทความ ( 26 )

สมาชิกที่ใส่เสื้อไทยครีเอท Hall of Fame 2012

สถานะออฟไลน์


$dateExpire = gregoriantojd(29, 01, 2008);
$dateCurrent = gregoriantojd(29, 01, 2009);
echo "เหลืออายุการใช้งานอีก ".($dateExpire - $dateCurrent)." วัน";

ลองใช้ gregoriantojd นี่หละครับ ออกมาเป็นวันดี






Date : 2009-07-29 05:09:03 By : deawx
 


 

No. 2

Guest


ขอบคุณครับแต่ลองไปทำแล้ว ไม่ได้นะครับ ช่วยแทรกโค๊ดให้ดูทีนะครับ

พี่ๆ คนไหนเก่งๆ ทำให้เป็นตัวอย่างหน่อยนะครับ
Date : 2009-07-29 10:58:47 By : Eroz
 

 

No. 3

Guest


ไปประยุก แล้ว ใช่แล้วงงครับ ผมมะได้เก่งโค๊ดเท่าไหร่ครับ พี่คนไหนเก่งช่วยแก้แล้วทำให้เข้าใจหน่อยครับ
Date : 2009-07-29 11:45:56 By : Eroz
 


 

No. 4

Guest


เศร้า....ทำไงก้อไม่ได้ ช่วยหน่อยนะครับคนใจบุญ
Date : 2009-07-29 23:17:58 By : Eroz
 

   

ค้นหาข้อมูล


   
 

แสดงความคิดเห็น
Re : หาจำนวนวันครับ ติดอะไม่รู้ครับ ช่วยดูโค๊ดให้ทีครับทำตัวหนาให้แล้วนะคับช่วยทีครับ ขอบคุณครับ
 
 
รายละเอียด
 
ตัวหนา ตัวเอียง ตัวขีดเส้นใต้ ตัวมีขีดกลาง| ตัวเรืองแสง ตัวมีเงา ตัวอักษรวิ่ง| จัดย่อหน้าอิสระ จัดย่อหน้าชิดซ้าย จัดย่อหน้ากึ่งกลาง จัดย่อหน้าชิดขวา| เส้นขวาง| ขนาดตัวอักษร แบบตัวอักษร
ใส่แฟลช ใส่รูป ใส่ไฮเปอร์ลิ้งค์ ใส่อีเมล์ ใส่ลิ้งค์ FTP| ใส่แถวของตาราง ใส่คอลัมน์ตาราง| ตัวยก ตัวห้อย ตัวพิมพ์ดีด| ใส่โค้ด ใส่การอ้างถึงคำพูด| ใส่ลีสต์
smiley for :lol: smiley for :ken: smiley for :D smiley for :) smiley for ;) smiley for :eek: smiley for :geek: smiley for :roll: smiley for :erm: smiley for :cool: smiley for :blank: smiley for :idea: smiley for :ehh: smiley for :aargh: smiley for :evil:
Insert PHP Code
Insert ASP Code
Insert VB.NET Code Insert C#.NET Code Insert JavaScript Code Insert C#.NET Code
Insert Java Code
Insert Android Code
Insert Objective-C Code
Insert XML Code
Insert SQL Code
Insert Code
เพื่อความเรียบร้อยของข้อความ ควรจัดรูปแบบให้พอดีกับขนาดของหน้าจอ เพื่อง่ายต่อการอ่านและสบายตา และตรวจสอบภาษาไทยให้ถูกต้อง

อัพโหลดแทรกรูปภาพ

Notice

เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ
อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง

   
  เพื่อความปลอดภัยและการตรวจสอบ กระทู้ที่แทรกไฟล์อัพโหลดไฟล์จากที่อื่น อาจจะถูกลบทิ้ง
 
โดย
อีเมล์
บวกค่าให้ถูก
<= ตัวเลขฮินดูอารบิก เช่น 123 (หรือล็อกอินเข้าระบบสมาชิกเพื่อไม่ต้องกรอก)







Exchange: นำเข้าสินค้าจากจีน, Taobao, เฟอร์นิเจอร์, ของพรีเมี่ยม, ร่ม, ปากกา, power bank, แฟลชไดร์ฟ, กระบอกน้ำ

Load balance : Server 04
ThaiCreate.Com Logo
© www.ThaiCreate.Com. 2003-2025 All Rights Reserved.
ไทยครีเอทบริการ จัดทำดูแลแก้ไข Web Application ทุกรูปแบบ (PHP, .Net Application, VB.Net, C#)
[Conditions Privacy Statement] ติดต่อโฆษณา 081-987-6107 อัตราราคา คลิกที่นี่