summaryrefslogtreecommitdiff
path: root/ext/mysqli/tests/055.phpt
blob: e650dbcecdd1e41a75f3905d095e256e476cf920 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--TEST--
free nothing 
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
	include "connect.inc";
	
	/************************
	 * don't free anything 
	 ************************/
	$link = mysqli_connect($host, $user, $passwd);

	$result2 = mysqli_query($link, "SELECT CURRENT_USER()");
	$stmt2 = mysqli_prepare($link, "SELECT CURRENT_USER()");
	printf("Ok\n");
?>
--EXPECT--
Ok