|
|
|
ถามเกี่ยวกับการดึงข้อมูลจาก2ตารางมาโชว์ครับ ผมใช้ PHP+Oracle นะครับนี้คือหน้า Design |
|
|
|
|
|
|
|
ผมใช้PHP+Oracle นะครับ
นี้คือหน้าDesign คืออยากให้เห็นแบบนี้
ในกรอบสีน้ำเงินคือข้อมูลที่ดึงจากตารางที่1 มีด้านบนบางส่วน และด้านล่างบางส่วน
และในกรอบสีน้ำเงินคือข้อมูลที่ดึงจากตารางที่2 ซึ่งมีได้หลายแถว
แต่พอQry ข้อมูลออกมา มันไม่โชว์ ข้อมูลบางส่วนของตารางที่1 ตรงด้านล่างอ่ะครับ
ต้องทำยังไงให้มันโชว์ ผมลองใช้ while 2ครั้งทั้งด้านบนและล่างก็ยังไม่ได้
โค้ดตามนี้นะ
Code (PHP)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ศูนย์รวมข้อมูลจังหวัดพังงา</title>
<style type="text/css">
<!--
.style1 {
font-family: "mS Sans Serif";
font-size: 14px;
color:#000000;
}
.style2 {
font-family: "mS Sans Serif";
font-size: 14px;
color:#000000;
font-weight:bold;
}
a:link {
color: #000000;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #000000;
}
a:hover {
text-decoration: none;
color: #000000;
}
a:active {
text-decoration: none;
color: #000000;
}
-->
</style>
</head>
<body>
<?
include('connect_oracle.php');
$query = "SELECT plans.plans_id,plans.plans_name,plans.plans_detail,plans.plans_date,planslist.plist_id,planslist.plist_row,planslist.plist_price,planslist.plist_mul,planslist.plist_mulprice,plans.plans_tel,plans.plans_email,plans.plans_price FROM plans,planslist WHERE plans.plans_id =planslist.plans_id";
$Parse = oci_parse ($connection, $query);
oci_execute ($Parse);
$plans_id = $_GET['plans_id'];
$committed = oci_commit($connection);
while($row=oci_fetch_array($Parse))
{
$plans_id = $row['PLANS_ID'];
$plans_name= $row['PLANS_NAME'];
$plans_detail= $row['PLANS_DETAIL'];
$plans_date= $row['PLANS_DATE'];
/* $plans_tel = $row['PLANS_TEL'];
$plans_email= $row['PLANS_EMAIL'];
$plans_price= $row['PLANS_PRICE'];
$plist_row= $row['PLIST_ROW'];
$plist_price= $row['PLIST_PRICE'];
$plist_mul= $row['PLIST_MUL'];
$plist_mulprice= $row['PLIST_MULPRICE'];
}*/
?>
<div align="center">
<table width="750" border="0" cellpadding="0" cellspacing="0">
<!--DWLayoutTable-->
<tr>
<td width="750" height="77" valign="top"><img src="pic/picbill/top.jpg" width="750" height="77" /></td>
</tr>
<tr>
<td height="58" valign="top"><table width="750" border="0" cellpadding="1" cellspacing="1">
<!--DWLayoutTable-->
<tr class="style2">
<td width="620">ชื่อ : <? echo $plans_name; ?> </td>
<td width="123">เลขที่ : <? echo $plans_id; ?> </td>
</tr>
<tr valign="top">
<td class="style1"><span class="style2">รายละเอียด :</span><br />
<? echo $plans_detail; ?></td>
<td class="style1">วันที่ <? echo $plans_date; ?> </td>
</tr>
<tr height="10" background="pic/picbill/bg_h.jpg">
<td height="3" colspan="2"></td>
</tr>
</table></td>
</tr>
<tr>
<td height="102" valign="top"><table width="750" border="0" cellpadding="1" cellspacing="1" bgcolor="#FFFFFF">
<!--DWLayoutTable-->
<tr bgcolor="#9FFFFF" class="style2">
<td width="24"><div align="center">ที่</div></td>
<td width="357"><div align="center">รายการ</div></td>
<td width="130"><div align="center">ค่าธรรมเนียม</div></td>
<td width="90"><div align="center">จำนวน(หน่วย)</div></td>
<td colspan="2"><div align="center">ราคา</div></td>
</tr>
<?php
$row1=oci_fetch_all($Parse,$pl);
for ($i=0;$i<$row1;$i++){
?>
<tr bgcolor="#DFFDFF">
<td class="style1"><div align="center"><? echo $i+1; ?></div></td>
<td class="style1"><div align="left"><?=$pl['PLIST_ROW'][$i]; ?></div></td>
<td class="style1"><div align="right"><?=$pl['PLIST_PRICE'][$i];?></div></td>
<td class="style1"><div align="center"><?=$pl['PLIST_MUL'][$i]; ?></div></td>
<td width="100" class="style1"><div align="right"><?=$pl['PLIST_MULPRICE'][$i];?></div></td>
<td width="30" class="style1"><!--DWLayoutEmptyCell--> </td>
</tr>
<?php }
} ?>
<? while($row=oci_fetch_array($Parse))
{
$plans_tel = $row['PLANS_TEL'];
$plans_email= $row['PLANS_EMAIL'];
$plans_price= $row['PLANS_PRICE'];
?>
<tr bgcolor="#DFFDFF" class="style2" bordercolordark="#DFFDFF">
<td colspan="4" class="style1"><div align="right">รวมยอดเงินที่ต้องชำระ</div></td>
<td class="style1"><div align="right"><? echo $plans_price; ?></div></td>
<td class="style1" align="right">บาท</td>
</tr>
<tr bgcolor="#DFFDFF">
<td colspan="6" class="style1">หมายเลขโทรศัพท์ : <? echo $plans_tel; ?> <br />
Email Address : <a href="mailto:<? echo $plans_email; ?>"><? echo $plans_email; ?></a></td>
</tr>
<?php } ?>
</table></td>
</tr>
<tr>
<td height="4"></td>
</tr>
<tr>
<td height="99" align="left" valign="top" class="style1"><span class="style2">คำแนะนำ</span><br />
1.โปรดนำเอกสารนี้ไปชำระเงินภายใน 7 วัน<br />
2.ข้อมูลการวางแผนเดินทางท่องเที่ยวฉบับนี้จะสมบูรณ์ เมื่อทางเจ้าของสถานที่พักและพาหนะเดินทางได้รับเงินเรียบร้อยแล้ว<br />
3.โปรดเก็บหรือสำเนาเอกสารฉบับนี้ไว้เพื่อความสะดวกในการตรวจสอบข้อมูลในภายหลัง<br />
<br />
<br /> </td>
</tr>
<tr>
<td height="50" valign="top" background="pic/picbill/bg_f.jpg" class="style1"><div align="center">- - - ขอบคุณที่ใช้บริการ - - - <br />
<span class="style2">ศูนย์รวมข้อมูลจังหวัดพังงา</span><br />
<a href="http://www.phangngaportal.com" target="_blank">www.phangngaportal.com</a> <a href="mailto:[email protected]">[email protected]</a></div></td>
</tr>
</table>
<?php ocilogoff ($connection); ?>
</div>
</body>
</html>
เอาไงดีครับ....ช่วยทีนะ
Tag : - - - -
|
|
|
|
|
|
Date :
2009-07-27 23:05:03 |
By :
atip |
View :
1665 |
Reply :
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ข้อมูลที่ใช้แค่ครั้งเดียวไม่ต้องใช้ while ไป fetch มันหรอกครับ fetch ธรรมดาก็ได้
แต่ถึงอย่างไร งานนี้คุณก็ต้องใช้ 2 result ไม่รู้ว่าใช่ $Parse รึป่าวนะครับ เดาเอาว่าใช่
ก็ต้องเพิ่ม เป็น $Parse1 $Parse2 โดยใช้ คำสั่ง sql ตัวเดียวกัน ทีนี้ก็แยกกัน fetch
ข้อมูลที่ใช้ครั้งเดียวก้ใช้ $Parse1
ข้อมูลที่แสดงหลายแถว ก้ใช้ $Parse2
ประมาณนี้ล่ะครับ พอดี ผมไม่เคยใช้กะ oracle
|
|
|
|
|
Date :
2009-07-27 23:54:41 |
By :
lozomac |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ผมก็ว่าอย่างคุณ a-mac นั้นนะครับ
เพราะว่า เท่าที่ดู
ข้อมูลตารางที่ 1 ที่เกี่ยวกับเบอร์โทรหายไป
ลอง Debug เฉพาะ Query โดยไม่ต้องใส่ฟอร์แมต ใด ๆ เลย
ลองดู ว่าข้อมูลที่ Query ออกมาถูกต้องแล้ว
แล้วค่อยเอาค่าไปใส่ตัวแปร แล้วเอามาโชว์
|
|
|
|
|
Date :
2009-07-28 08:27:11 |
By :
taobsd |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 00
|