repo.or.cz
/
csql.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
moving server source files to server folder
[csql.git]
/
test
/
phptests
/
contest.php
blob
de3d24b6092b76f16aefbef350d74499404742da
1
<
html
>
2
<
body
>
3
//Connection Testing
4
<
?php
5
$conn
=
odbc_connect
(
'mycsql'
,
'root'
,
'manager'
);
6
if
(!
$conn
)
7
{
8
echo
"Connection Failed"
;
9
exit
(
1
);
10
}
11
echo
"Connection Passed"
;
12
?
>
13
</
body
>
14
</
html
>