ช่วยทีครับ วนลูปดึงข้อมูลออกมาหลายๆๆตัวไม่ได้ ต้องทำการวนลูปอย่างไรครับ
ขอแก้ โค๊ดนิดนึงนะคับ
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title></title>
</head>
<body>
<?php
include("C:\wamp\www\projectphp\connect.php");
$SqlAppr = "select a.ordernum,a.description,";
$SqlAppr .="c.itemnum,c.orderqty from order a,listorder c where a.ordernum=c.ordernum and status like 'APp'";
$Obj = oci_parse($connnps, $SqlAppr);
oci_execute($Obj, OCI_DEFAULT);
while ($Objresult = oci_fetch_array($Obj,OCI_ASSOC+OCI_RETURN_NULLS)) {
$ordernum = $Objresult['ORDERNUM'];
$descriptionpo = $Objresult['DESCRIPTION'];
$itemnum = $Objresult['ITEMNUM'];
$orderqty = $Objresult['ORDERQTY']
}
$strMessage = "
<table border='1' cellpadding='5' cellspacing='1' bordercolor='#666666' align='center'>
<tr>หมายเลขสั่งซื้อ $ordernum</tr>
<tr>
<td bgcolor='#94E282' align='center' ><font size=2 color='#003300'><b><br>itemnum.</b></font></td>
<td bgcolor='#94E282' align='center' ><font size=2 color='#003300'><b><br>description.<br></b></font></td>
<td bgcolor='#94E282' align='center' ><font size=2 color='#003300'><b><br>Orderqty.<br></b></font></td>
</tr>";
$strMessage .= "
<tr>
<td bgcolor='$bgcolor' align='left'><font size=2 color='#003300'>$itemnum<br></front></td>
<td bgcolor='$bgcolor' align='left'><font size=2 color='#003300'>$description<br></front></td>
<td bgcolor='$bgcolor' align='center'><font size=2 color='#003300'>$orderqty<br> </front></td>
</tr>
</table>";
echo $strMessage;
?>
</body>
</html>
Date :
2011-09-22 09:44:18
By :
แบ้ง
ปีกกาครับ คำสั่ง while{ ตัวแปร } ปีกกา ต้อง ครอบตัวแปรที่เราจะวนลูปครับ ลองดูนะครับ ผิดพลาดประการใดต้องขออภัยไว้ด้วย
Date :
2011-09-22 09:45:37
By :
nuarsenal
เอ่อ ที่ผมหมายถึง นี่คือ 1รายการสั่งซื้อ (ordernum) จะลิสรายชื่อ รายการสั่งซื่ือ พวก itemnum description orderqty ลิสออกมาในตารางอะครับ เหมือนเก็บ itemnum description orderqty เป็นอาเรย์อะ ผมพูด งงรึป่าวหว่า = =
Date :
2011-09-22 10:12:57
By :
bank
Load balance : Server 01