Subject | ibase_connect() gets error: Call to undefined function ibase_connect() |
---|---|
Author | larry.grew |
Post date | 2009-08-25T20:35:33Z |
I'm trying to connect a web page to a Firebird db using the code:
$conn = ibase_connect($server, $user_name, $password);
I get the error message:
Fatal error: Call to undefined function ibase_connect() in C:\wamp\www\connect01.php on line 8
How do I get it to recognise the connect function, please ?
Larry
P.S.
FlameRobin connects OK.
Since failing with Firebird,
I can connect no problem to a MYSQL db using
mysql_connect($server, $user_name, $password);
$conn = ibase_connect($server, $user_name, $password);
I get the error message:
Fatal error: Call to undefined function ibase_connect() in C:\wamp\www\connect01.php on line 8
How do I get it to recognise the connect function, please ?
Larry
P.S.
FlameRobin connects OK.
Since failing with Firebird,
I can connect no problem to a MYSQL db using
mysql_connect($server, $user_name, $password);