summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/055.phpt
blob: e777bcfc99403146aebe3391ad504b70ae40e25b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
--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