<?php

$conn = new mysqli("127.0.0.1", "root", "", "test");

$stmt = $conn->prepare("SELECT * FROM t1");
$stmt->execute();
$stmt->close();
$conn->close();
