|
|
|
สอบถามปัญหาการแสดงข้อมูลจาก SQL Server ด้วย php รันแล้วไม่มีข้อมูลขึ้น ต้องทำอย่างไร |
|
|
|
|
|
|
|
มี Error อะไรหรือเปล่าครับ แล้ว 158.108.96.16 สามารถเชื่อมต่อได้จริง ๆ หรือไม่
|
|
|
|
|
Date :
2013-05-22 11:18:46 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (PHP)
<?php
$host = "158.108.96.16\sqlexpress" ; // Host ip
$username = "sa" ; // Username
$password = "ccitku19" ; // Password
$db = "Web_IT" ; // Database Name
if (@!$connect = mssql_connect($host, $username, $password)) {
exit("ไม่สามารถติดต่อฐานข้อมูลได้");
}
if (@!mssql_select_db($db, $connect)){
// หากไม่สามารถเลือกใช้งานดาต้าเบสได้
exit("ไม่สามารถเลือกฐานข้อมูลได้");
}
?>
<table width="600" border="1">
<tr>
<th width="91"> <div align="center">FilesID </div></th>
<th width="98"> <div align="center">Name </div></th>
<th width="198"> <div align="center">FilesType </div></th>
</tr>
<?
while($objResult = mssql_fetch_array($objQuery))
{
?>
<tr>
<td><div align="center"><?=$objResult["FilesID"];?></div></td>
<td><?=$objResult["Name"];?></td>
<td><?=$objResult["FilesType"];?></td>
</tr>
<?
}
?>
</table>
<?
mssql_close($objConnect);
?>
</body>
</html>
ลองดูค่ะ
|
|
|
|
|
Date :
2013-05-22 11:22:11 |
By :
supattra.s |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไม่มี Error อะไรแสดงเลยค่ะ 158.108.96.16 เชื่อมต่อได้ค่ะ
|
|
|
|
|
Date :
2013-05-22 11:25:07 |
By :
pawineesom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Date :
2013-05-22 11:30:39 |
By :
pawineesom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ไปที่เมนู View Source ของ Web Browser หน่อยครับ ไม่แน่ใจว่า php.ini น่าจะไม่ได้ open short tags และน่าจะต้องใช้
<?php
ครับ
|
|
|
|
|
Date :
2013-05-22 11:41:05 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
view cource แล้ว
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<title>ThaiCreate.Com PHP & SQL Server Tutorial</title>
</head>
<body>
ได้แบบนี้ค่ะ
|
|
|
|
|
Date :
2013-05-22 12:50:05 |
By :
pawineesom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
แก้ไขได้แล้วค่ะ
ด้วยการเปลี่ยนไปใช้ Appserv แทน
|
ประวัติการแก้ไข 2013-05-27 09:37:23
|
|
|
|
Date :
2013-05-23 15:14:12 |
By :
pawineesom |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|