Hi,

Is the following possible:

$conn = sybase_connect("SERVER,"login","passwd");
$sql = "select @@version";
$result = sybase_query($sql,$conn);
while($row = sybase_query($result)) {
       $r = $row[0];
       echo "$r";
}

I tried but get a strange error message that I dont understand, what would be the 
correct syntax?

Regards
Richard Hillström


--
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to