1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<html> <body bgcolor=white> <?php $dbproc = sybase_connect("JDBC","guest","sybase"); if (! $dbproc) { return; } $res = sybase_query("select * from test",$dbproc); if (! $res) { return; } while ($arr = sybase_fetch_array($res)) { print $arr["i"] . " " . $arr["v"] . "<br>\n"; } ?> </body> </html>
|