Check if the 'php_interbase.dll' is present and in the proper location.


Jayme.

http://www.conex.com.br/jjeffman



-----Mensagem Original-----
De: Kyoungsub, Wee <[EMAIL PROTECTED]>
Para: PHP DB Mailing <[EMAIL PROTECTED]>
Enviada em: quarta-feira, 17 de janeiro de 2001 16:40
Assunto: [PHP-DB] Question, using Interbase on Win32 platform, please
help...


> Hi,
>
> My Server is Windows 2000 ( Advanced Server ).
>
> I use Apache WebServer(1.3.12) and  PHP 4.0.2
>
> I use Interbase 5.6 Server, PHP module (extension) not loading problem.
>
> My PHP root is "c:\php"
>
> My PHP.INI, this
> ------------
> extension_dir="C:\php\extensions"
>
>
> extension=php_interbase.dll
>
>
> -------------
>
> when I Start Apache Service, Appear this message
>
> 'Unable to load dynamic library 'php_interbase.dll'
>
> but any PHP function execute good.
>
> I execute sample php code, this
> --------------
> <?
> phpinfo();
>  $dbh = ibase_connect ("d:\project\klpg\database\tank.gdb", "sysdba",
"masterkey");
>  $stmt = 'SELECT * FROM customer';
>  $sth = ibase_query ($dbh, $stmt);
>  while ($row = ibase_fetch_object ($sth))
>  {
>   print $row->email . "\n";
>  }
>  ibase_close ($dbh);
> ?>
> --------------
> result is
>
> Fatal error: Call to undefined function: ibase_connect() in
d:/webroot/index.php3 on line 36
>
> I don't know this..help...please
>
>
>
>


-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to