Hi! Could we please enable some services and cookies to improve your experience and our website?

PHPize | SQLize | SQLtest

Online Sandbox for SQL and PHP: Write, Run, Test, and Share SQL Queries and PHP Code

A A A
Login    Share code      Blog   FAQ
Copy Format Clear
select version() as Version;

Stuck with a problem? Got Error? Ask AI support!

Copy Clear
Copy Format Clear
<?php function query($input) { $result = array(); $query_obj = mysqli_query($mysqli, $input); while($res_arr = mysqli_fetch_assoc($query_obj)) { foreach($res_arr as $row) { array_push($result,"$row"); } } return $result; } echo print_r(query('SHOW DATABASE;')); ?>
Copy Clear