01.
<html>
02.
<head>
03.
<title>ThaiCreate.Com PHP & SQL Server (mssql)</title>
04.
</head>
05.
<body>
06.
<?php
07.
08.
ini_set
(
'display_errors'
, 1);
09.
error_reporting
(~0);
10.
11.
$objConnect
= mssql_connect(
"localhost"
,
"sa"
,
""
);
12.
if
(
$objConnect
)
13.
{
14.
echo
"Database Connected."
;
15.
}
16.
else
17.
{
18.
echo
"Database Connect Failed."
;
19.
}
20.
21.
mssql_close(
$objConnect
);
22.
?>
23.
</body>
24.
</html>