I use php with interbase. But when i try the code below i get this eror message :
Fatal error: Call to undefined function: ibase_connect() in c:\inetpub\wwwroot\index.php on line 12 I want to know what is wrong with the code or if i have to do with php in order to run with Interbase ? Please help !!!!!!!! ---------------begin--------------------- <html> <head> <title>Test connexion Interbase</title> </head> <body> <?php echo "Affichage des informations de Interbase<p>"; $host = "C:\Program Files\Borland\InterBase\BDCENTRALE.GDB"; $username = "SYSDBA"; $password = "masterkey"; $db = ibase_connect($host, $username, $password); ibase_close($db); echo "Connexion réussie"; ?> </body> </html> ------------------end-------------------------