summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/059.phpt
diff options
context:
space:
mode:
authorGeorg Richter <georg@php.net>2004-02-11 07:39:28 +0000
committerGeorg Richter <georg@php.net>2004-02-11 07:39:28 +0000
commit3e2907d614e602a2d5b58b327ea8144f103d24cf (patch)
tree98e1ba9ee0df285d5d6607795ff317c723010925 /ext/mysqli/tests/059.phpt
parentc0a1ec4210a0f8838f8ba1a2f0b77dd0d9e9caf9 (diff)
downloadphp-git-3e2907d614e602a2d5b58b327ea8144f103d24cf.tar.gz
changed first param in mysqli_bind_param
Diffstat (limited to 'ext/mysqli/tests/059.phpt')
-rw-r--r--ext/mysqli/tests/059.phpt2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/tests/059.phpt b/ext/mysqli/tests/059.phpt
index a7bb3adff9..80d8a35012 100644
--- a/ext/mysqli/tests/059.phpt
+++ b/ext/mysqli/tests/059.phpt
@@ -16,7 +16,7 @@ sqlmode + bind
$stmt = mysqli_prepare($link, "INSERT INTO mbind VALUES (?||?)");
- mysqli_bind_param($stmt, array(MYSQLI_BIND_STRING, MYSQLI_BIND_STRING), $a, $b);
+ mysqli_bind_param($stmt, "ss", $a, $b);
$a = "foo";
$b = "bar";