Hi.
I need help with Interbase.
Here is my script...
*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
<?php
$database = "../../interbase_data/NAMES.GDB";
$username = "ADMIN";
$password = "********";
$dbh = ibase_connect ($database, $username, $password);
$stmt = 'SELECT * FROM name';
$sth = ibase_query ($dbh, $stmt);
while ($row = ibase_fetch_object ($sth)) {
echo $row["first"]." ".$row["last"]."<BR>\n";
}
ibase_close ($dbh);
?>
*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*~*
The php manual says that the $database variable must be the full path the
database file if it's location is on the localhost.
Now as you can see i've done that but i keep getting this dumb messages
saying "Undefined Database".
Please could any one help me.
I have no clue what to do.
I've been sitting for 2 days now and I've finally turned to the newsgroup.
Please Please.
Thanx
Vins
[EMAIL PROTECTED]
Text Me: +27721807050
--
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]