does anyone know this error message :
Notice: Undefined property: hsocode in c:\rsim\myibase.php on line 23
i m trying to access my interbase on windows2000 and produced that error.
Here's my code :
<?php
$host = 'localhost:/rsim/dbrsim.gdb';
$dbh = ibase_connect($host, 'sysdba', 'masterkey');
$stmt = 'SELECT * FROM hsr_h';
$sth = ibase_query($dbh, $stmt);
while ($row = ibase_fetch_object($sth)) {
echo $row->hsocode, "\n";
}
ibase_free_result($sth);
ibase_close($dbh);
?>
tia