0
Person who can help me I’m already a week cracking my head
I bought a system and the bank and Firebird file fdb version 2.5 I want to assemble another program but I need to align the banks, until it turns fully.
Already install xampp, wampserver,
I’ll put the step by step I did
I installed in the same machine where the bank I can access it through other tools
fbclient.dll and gds32.dll already placed inside the apache Bim folder Ja test change the php.ini file by placing the extesion = php_interbase.dll have already consulted the directory to see if it has the extension there and it exists.
error connection as I try to run browser
Fatal error: Undetected error: call for undefined function ibase_connect () in C: xampp htdocs connected conex.php: 6 Stack tracking: #0 {main} released in C: xampp htdocs connected conex.php on line 6
php info Firebird driver for PDO / Ard Biesheuvel sincerely already exhausted I know it may be something simple but I’m not finding the error.
connection file <?php $server = 'localhost:C: test system.FDB'; $user = "SYSDBA"; $password = "masterkey"; if (!($connection=ibase_connect($server,$user,$password))) die('Error connecting: '.ibase_errmsg()); $sql = "SELECT CODE, NAME FROM vendors"; $query = ibase_query($connected,$sql); while ($l = ibase_fetch_object($query)) { echo $l['NAME']. '<br/>'; } //Release memory used ibase_free_result($query); //close connection with Firebird ibase_close($connection); ?>
– Jônatas Provido Lopes do Prado