|
|
|
ขอความช่วยเหลือหน่อยครับ เรื่องดึงข้อมูลจากฐานข้อมูล Access มาแสดงไม่ได้ครับ |
|
|
|
|
|
|
|
ได้แล้วครับ
CODE: ครับ.
Code
<?
$conn1 = odbc_connect("isobase","","");
if ($Doc_Level=="ระดับบริษัท")
{
$sql="select * from user where appr1=true and departmentid='ส.พัฒนาองค์กรฯ'";
$rs1 = odbc_exec($conn1,$sql);
$i=1;
if (!$rs1)
{exit("Error in SQL");}
while(odbc_fetch_row($rs1))
{
$personid=odbc_result($rs1,"personid");
$firstnamet=odbc_result($rs1,"firstnamet");
$lastnamet=odbc_result($rs1,"lastnamet");
?>
<option value = "<? echo $personid;?>"><? echo $firstnamet;?> <? echo $lastnamet;?>
<?
$i++;
}
}
else
{
$sql="select * from user where appr1=true and departmentid='$Doc_Level' ";
$rs2 = odbc_exec($conn1,$sql);
$i=1;
while(odbc_fetch_row($rs2))
{
$personid=odbc_result($rs2,"personid");
$firstnamet=odbc_result($rs2,"firstnamet");
$lastnamet=odbc_result($rs2,"lastnamet");
?>
<option value = "<? echo $personid;?>"><? echo $firstnamet;?> <? echo $rs1lastnamet;?>
<? $i++;
}
}
odbc_close($conn1);
?>
|
|
|
|
|
Date :
2012-11-30 09:47:51 |
By :
sununrak |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2012-11-30 10:07:28 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|