03.
<head>
04.
<meta http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
05.
<title>Untitled Document</title>
06.
</head>
07.
08.
<html>
09.
<head>
10.
<title>ThaiCreate.Com PHP & SQL Server Tutorial</title>
11.
</head>
12.
<body>
13.
<?
14.
$objConnect
= mssql_connect(
"localhost"
,
"root"
,
"darkness"
)
or
die
(mssql_error());
15.
if
(
$objConnect
)
16.
{
17.
echo
"Database Connected."
;
18.
}
19.
else
20.
{
21.
echo
"Database Connect Failed."
;
22.
}
23.
24.
mssql_close(
$objConnect
);
25.
?>
26.
</body>
27.
</html>