|
|
|
ขอความช่วยเหลือครับ select ข้อมูลมาแล้ว ส่งค่าไปยังอีกหน้าแล้วสั่งให้โชว์ค่าที่ส่งมามันไม่โชว์ครับใช้ session (php+oracle) |
|
|
|
|
|
|
|
ขอความช่วยเหลือครับ select ข้อมูลมาแล้ว ส่งค่าไปยังอีกหน้าแล้วสั่งให้โชว์ค่าที่ส่งมามันไม่โชว์ครับใช้ session (php+oracle)
codeตามนี้ครับ
หน้าแรก
Code (PHP)
<form action="test.php" >
<?
$objConnect = oci_connect('tplus','tplus','135.9.200.1/ths');
$strSQL = "select * from gb_location";
$objParse = oci_parse ($objConnect,$strSQL);
oci_execute ($objParse,OCI_DEFAULT);
echo"<select name=\"id\" >";
while($rs = oci_fetch_array($objParse,OCI_BOTH))
{
echo" <option value=\"$rs[1]\">$rs[2]";
echo"</option>";
}
echo"</select>";
$_SESSION["id"] = $Array;
?><INPUT TYPE="submit">
</TD>
</TR> </form>
หน้าที่รับค่า
Code (PHP)
<?session_start();?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<TITLE> New Document </TITLE>
<META NAME="Generator" CONTENT="EditPlus">
<META NAME="Author" CONTENT="">
<META NAME="Keywords" CONTENT="">
<META NAME="Description" CONTENT="" charset="windows-874">
</HEAD>
<BODY>
<?
$id = $_POST['id'];
echo"$id";
$objConnect = oci_connect('tplus','tplus','135.9.200.1/ths');
$strSQL = "select * from gb_location where loc_id='$id'";
$objParse = oci_parse ($objConnect, $strSQL);
oci_execute ($objParse,OCI_DEFAULT);
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">CustomerID </div></th>
<th width="98"> <div align="center">Name </div></th>
<th width="198"> <div align="center">Email </div></th>
<th width="97"> <div align="center">CountryCode </div></th>
<th width="59"> <div align="center">Budget </div></th>
<th width="71"> <div align="center">Used </div></th>
</tr>
<?
while($objResult = oci_fetch_array($objParse,OCI_BOTH))
{
?>
<tr>
<td><div align="center"><?=$objResult["0"];?></div></td>
<td><?=$objResult["1"];?></td>
<td><?=$objResult["2"];?></td>
<td><div align="center"><?=$objResult["3"];?></div></td>
<td align="right"><?=$objResult["4"];?></td>
<td align="right"><?=$objResult["5"];?></td>
</tr>
<?
}
?>
</table>
<?
oci_close($objConnect);
?>
</BODY>
</HTML>
Tag : PHP, Oracle
|
|
|
|
|
|
Date :
2012-07-18 11:42:08 |
By :
sakurasun |
View :
953 |
Reply :
1 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 04
|