From 7afa7236bac15a2431aee621c744c51fed618828 Mon Sep 17 00:00:00 2001 From: "Jesus M. Castagnetto" Date: Fri, 8 Sep 2000 18:53:58 +0000 Subject: [PATCH] Added note indicating that Interbase uses ' for escaping, like Sybase git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@32275 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/ibase.xml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/functions/ibase.xml b/functions/ibase.xml index 50cd439240..ddb8d2bae3 100644 --- a/functions/ibase.xml +++ b/functions/ibase.xml @@ -11,8 +11,18 @@ - Full support for InterBase 6 was added in PHP 4.0. + Full support for InterBase 6 was added in PHP 4.0. + + This database uses a single quote (') character for escaping, a + behavior similar to the Sybase database, add to your + php.ini the following directive: + + +magic_quotes_sybase = On + + +