diff --git a/functions/ibase.xml b/functions/ibase.xml
index ceeaaf472c..79546034c6 100644
--- a/functions/ibase.xml
+++ b/functions/ibase.xml
@@ -16,6 +16,32 @@
Description
int ibase_connect
+ string database
+ string username
+ string password
+
+
+
+
+
+ Opens a connection to an Interbase database.
+
+ ibase_connect example
+
+$dbh = ibase_connect($host, $username, $password);
+$stmt = 'SELECT * FROM tblname';
+$sth = ibase_query($dbh, $stmt);
+while ( $row = ibase_fetch_object($sth) ) {
+ print $row->name . "\n";
+}
+ibase_close($dbh);
+
+
+
+
+ See also: ibase_pconnect.
+
+=======
string database
string username
string password
@@ -26,6 +52,7 @@
See also: ibase_pconnect.
+>>>>>>> 1.5