ช่วยดูให้หน่อยค่ะ เขียน php แล้ว run กับ apache ผ่าน พอจะไปลง server แล้วต้อง run กับ iis มันแจ้งว่าติดต่อฐานข้อมูลไม่ได้ ดังตัวอย่างข้างล่างนี้ค่ะ
Warning: odbc_connect(): SQL error: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified, SQL state IM002 in SQLConnect in C:\AppServ\www\Eleaning\db_connect.php on line 6
$sql = "select count(pcode) as cntuid from person where pcode='$user_login' and password='$pass_login' ";
$result=odbc_exec($conn,$sql); *** line 19
while (odbc_fetch_row($result)) *** line 21
{
$cntuid = odbc_result($result,"cntuid");
}
//echo $cntuid;
If ($cntuid<=0) *** line 26
............
Warning: odbc_connect(): SQL error: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified, SQL state IM002 in SQLConnect in C:\AppServ\www\Eleaning\db_connect.php on line 6
select count(pcode) as cntuid from person where pcode='444444' and password='444444'
Warning: odbc_exec(): supplied argument is not a valid ODBC-Link resource in C:\AppServ\www\Eleaning\chkmember.php on line 19
Warning: odbc_fetch_row(): supplied argument is not a valid ODBC result resource in C:\AppServ\www\Eleaning\chkmember.php on line 21
Notice: Undefined variable: cntuid in C:\AppServ\www\Eleaning\chkmember.php on line 26