Ok im getting some where the Ib dll is finaly getting loaded....
But now the php is giving me av (the memory could not be written).
Here is my code:
<?php
$host = "computer:C:\Servers\interbase\database\employee.gdb";
$dbh = ibase_connect ($host, "SYSDBA", "masterkey");
$stmt = "select * from customer";
$sth = ibase_query ($dbh, $stmt);
while ($row = ibase_fetch_object ($sth)) {
print $row->email . "\n";
}
ibase_close ($dbh);
?>
What am i dowing whrong??
Thanks
Christian
--
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]