Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Help:Error connecting to interbase database using PHP

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Hello,

I'm getting an error when I try to connect to an interbase database.

I try:
<?php
$dbh = ibase_connect($host, $username, $password);
$stmt = 'SELECT * FROM tblname';
$sth = ibase_query($dbh, $stmt);
while ($row = ibase_fetch_object($sth)) {
echo $row->email, &quot;\n&quot;;
}
ibase_free_result($sth);
ibase_close($dbh);
?>

But recieve this error:
Undefined function: ibase_connect

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top