Well,
i not sure, but i believe that windows version not have interbase api. Please,
make an litle script
test.php3 --> <? phpinfo() ?>
And look wich Data base api you have aviable in your php version.
If you not have this api, you will probe with some unix machine with php and
compile php with interbase support.
Best regards,
Luis Morales
Bernhard Doebler wrote:
> Hi,
>
> my PHP Code looks like so:
>
> $Abfrage="SELECT DISTINCT inhalt.Bezeichnung AS bez1, body.bezeichnung AS bez2
> FROM Feldinhalt, namen, inhalt, body WHERE
> namen.GID=$grupp AND
> Feldinhalt.maschine=namen.nummer AND
> inhalt.InhaltsID
ldinhalt.inhalt AND
> body.datenwortid
ldinhalt.body
> ORDER BY body";
>
> $dbh = ibase_connect($host, $username, $password);
>
> $sth=ibase_query($dbh, $Abfrage);
>
> echo "Numfields: ".ibase_num_fields($sth);
>
> echo "<br>\n".$Abfrage."<br>\n";
>
> $row=ibase_fetch_row($sth);
> echo $row[0]." ".$row[1];
>
> When ibase_fetch_row(...) is called an error occurs.
> A message box pops up saying OleMainThreadWndName: php.exe
> Introductions at ... points to 0x00000000. Process written cannon be executed
> Then I'm asked to click on Ok or Cancel.
>
> A very bad Windows Error-message!
>
> I use PHP 4.0.6 on Windows NT with IIS 4.
>
> Please help if you can.
>
> Best regards
> Bernhard