diff options
| author | Georg Richter <georg@php.net> | 2003-06-28 21:30:58 +0000 |
|---|---|---|
| committer | Georg Richter <georg@php.net> | 2003-06-28 21:30:58 +0000 |
| commit | 192fb9095e4d9e042535bbc0f14b759f72023c98 (patch) | |
| tree | a70f223714ed09e5c6380ee4370cc504e1c127b6 /ext/mysqli/tests/002.phpt | |
| parent | f38bd95002cafb8e8b73d19b82c083d6bd5cb3e1 (diff) | |
| download | php-git-192fb9095e4d9e042535bbc0f14b759f72023c98.tar.gz | |
changed tests (ysqli_bind_param and mysql_bind_result changes)
Diffstat (limited to 'ext/mysqli/tests/002.phpt')
| -rw-r--r-- | ext/mysqli/tests/002.phpt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/tests/002.phpt b/ext/mysqli/tests/002.phpt index bbf5808641..7925f84fa8 100644 --- a/ext/mysqli/tests/002.phpt +++ b/ext/mysqli/tests/002.phpt @@ -21,7 +21,7 @@ mysqli bind_result 1 $rc = mysqli_query($link,"INSERT INTO test_fetch_null(col1,col10, col11) VALUES(1,'foo1', 1000),(2,'foo2', 88),(3,'foo3', 389789)"); $stmt = mysqli_prepare($link, "SELECT col1, col2, col3, col4, col5, col6, col7, col8, col9, col10, col11 from test_fetch_null"); - mysqli_bind_result($stmt, &$c1, &$c2, &$c3, &$c4, &$c5, &$c6, &$c7, &$c8, &$c9, &$c10, &$c11); + mysqli_bind_result($stmt, $c1, $c2, $c3, $c4, $c5, $c6, $c7, $c8, $c9, $c10, $c11); mysqli_execute($stmt); mysqli_fetch($stmt); |
