C3rd
PHP + Firebird SQL Installation
Posted: 28 May 2013, 22:20pm - TuesdayDownload the following: (In my case, it's 64bit)
- PHP
- Apache
- Firebird (http://www.firebirdsql.org/en/firebird-2-5-2-upd1/)
- php_interbase.dll
- php_pdo_firebird.dll
PHP Warning: PHP Startup: Unable to load dynamic library 'C:\php\ext\php_interbase.dll' - The specified module could not be found. in Unknown on line 0 PHP Warning: PHP Startup: Unable to load dynamic library 'C:\php\ext\php_pdo_firebird.dll' - The specified module could not be found. in Unknown on line 0 PHP 5.4.9 (cli) (built: Nov 21 2012 19:54:46) Copyright (c) 1997-2012 The PHP Group Zend Engine v2.4.0, Copyright (c) 1998-2012 Zend TechnologiesInstall the Firebird... Try again casting a command php -v
C:\Workspace\localhost\vshbdata>php -v PHP 5.4.9 (cli) (built: Nov 21 2012 19:54:46) Copyright (c) 1997-2012 The PHP Group Zend Engine v2.4.0, Copyright (c) 1998-2012 Zend TechnologiesMeaning, the firebird is successfully installed. Second test is create a php script:
<?php foreach(PDO::getAvailableDrivers() as $driver) { echo $driver.'<br />'; } ?>You should see firebird in the list...