Problem with connecting from php to firebird database. Connection code:
$database = "192.168.1.34:C:/db.gdb"; $user = "SYSDBA"; $password = "masterkey"; $db = ibase_connect($database, $user, $password);
However, when it is executed, the server produces an error:
PHP Fatal error: Call to undefined function ibase_connect()
But at the same time the necessary extensions are connected - php_interbase and php_pdo_firebird. What else could be wrong?