PHP, Oracle ช่วยดูโค้ดหน่อยค่ะ...ดึงข้อมูลจากฐาน ให้แสดง default ใน list box ค่ะ
ไม่เป็นรัยค่ะ ได้แล้ววววววววววว
Date :
2012-05-07 17:05:09
By :
eii-mian
[font=Verdana]ติดปัญหาคือ default ตรงกับฐาน แต่ไม่ลูปค่ะ[/font]
ช่วยดูโค้ดหน่อยน่ะค่ะ เป็นการ join 2 ตารางอ่ะค่ะ
Code (PHP)
<select name="vocation_id_mather">
<option value=""><-- เลือกอาชีพ --></option>
<?
$SQL1="select VOCATION.vocation_id,VOCATION.name_vocation,loans.vocation_id_mather,loans.student_id from loans,VOCATION where LOANS.vocation_id_mather=VOCATION.vocation_id and student_id='".$_SESSION["student_code"]."' "; //ดึงข้อมูจากฐาน
$stmt1=oci_parse($objConnect,$SQL1);
oci_execute($stmt1,OCI_DEFAULT);
while($row1 = oci_fetch_array($stmt1,OCI_BOTH))
{
if($row1['vocation_id_mather'] == $row1['vocation_id'])
{
$sel1 = "selected";
}
else
{
$sel1 = "";
}
?>
<option value="<?=$row1['vocation_id'];?>" <?=$sel1;?>><?=$row1['name_vocation'];?></option>
<?
}
?>
</select>
Date :
2012-05-07 17:50:48
By :
eii-mian
เอา Query ไปรันในดูครับ มันออกมาตรงหรือเปล่าครับ
Date :
2012-05-07 19:29:20
By :
mr.win
ยังงัยค่ะ ...
Date :
2012-05-07 19:55:55
By :
eii-mian
Code (PHP)
echo $SQL1;
$stmt1=oci_parse($objConnect,$SQL1);
เอา Query ไปรันดูหน่อยครับ
Date :
2012-05-07 20:21:08
By :
mr.win
Load balance : Server 03