php-src/ext/mysqli/tests/055.phpt

18 lines
349 B
Plaintext
Raw Normal View History

2003-02-17 23:29:58 +00:00
--TEST--
free nothing
--FILE--
<?php
include "connect.inc";
/************************
* don't free anything
************************/
$link = mysqli_connect("localhost", $user, $passwd);
$result2 = mysqli_query($link, "SELECT CURRENT_USER()");
$stmt2 = mysqli_prepare($link, "SELECT CURRENT_USER()");
printf("Ok\n");
?>
--EXPECT--
Ok