Your IP : 216.73.216.74


Current Path : /proc/thread-self/root/usr/share/doc/freetds-devel/samples/
Upload File :
Current File : //proc/thread-self/root/usr/share/doc/freetds-devel/samples/test.php

<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>