假設在SQL Server有一表格books,有兩個欄位book_name及auth_name,接下來建立兩個檔案就可以使用PHP來連接資料庫。
1.建立一檔案為test.php,程式碼如下:
<html lang=zh-tw>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=big5" />
<meta http-equiv="expires" content="-1">
<title>測試連接資料庫</title>
</head>
<body>
<table border="1">
<?php
include "conn.php";
$sql = "SELECT book_name,auth_name FROM books;";
$result = mssql_query($sql);
$info=mssql_fetch_array($result);
if($info==False){
echo "無資料!";
}
else{
do{
?>
<tr>
<td> <?php echo $info['book_name'];?> </td>
<td> <?php echo $info['auth_name'];?> </td>
</tr>
<?php
}
while($info=mssql_fetch_array($result));
mssql_close();
}
?>
</table>
</body>
</html>
2.其中conn.php的內容如下:
<?php
$conn=mssql_connect("192.168.1.6","sa","12345");
mssql_select_db(“DB_name”,$conn);
?>
THANKS~ , 超有用!!!!
回覆刪除