php-src/ext/mysqli/tests/050.phpt
Ulf Wendel b6cc61737f Will this never end?
- connection parameter tweaking
   - a bit of whitespace here and there
   - use UEXPECTF if need be
2007-07-12 20:57:30 +00:00

22 lines
409 B
PHP

--TEST--
non freed statement test
--SKIPIF--
<?php require_once('skipif.inc'); ?>
--FILE--
<?php
include "connect.inc";
/************************
* non freed stamement
************************/
$link = mysqli_connect($host, $user, $passwd, $db, $port, $socket);
$stmt = mysqli_prepare($link, "SELECT CURRENT_USER()");
mysqli_execute($stmt);
mysqli_close($link);
printf("Ok\n");
?>
--EXPECT--
Ok