Subject | Re: [firebird-support] Web - interface |
---|---|
Author | Christian |
Post date | 2005-05-20T12:06:54Z |
> I use from 4 year's ago adodb like layer to connect to database + php +I successfully connect for the first time to firebird :-) .
> apache
> all is affidable and secure my experience said this.
>
> adodb -> http://adodb.sourceforge.net/
But is this the correct way (with the php interbase extension) or exists
there a special extension for firebird?
<?php
include('adodb/adodb.inc.php');
$db = ADONewConnection('ibase');
$db->PConnect('host:c:\temp\db.fdb','sysdba','masterkey');
$rs = $db->Execute('select * from table1');
?>
Christian