Hi Vins,

Have you tried the database path without ".." (i.e. 
/path/to/database/NAMES.GDB)?

Have you tried defining the database like this? 
"localhost:/path/to/database/NAMES.GDB"

I'm not sure these will work, but they are worth trying.

Daniel Ems


On Fri, 14 Dec 2001, Vins wrote:

> 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"]."&nbsp;".$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]

Reply via email to