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

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

Copy Clear
Copy Format Clear
<?php $mysqli->set_charset('utf8mb4'); $mysqli->query("create table test (t varchar(255) character set utf8mb4)"); var_dump($mysqli->query("show create table test")->fetch_row()[1]); $mysqli->query("insert into test values ('test'), ('ั‚ะตัั‚')"); var_dump($mysqli->query("select t, length(t) len from test")->fetch_all());
Copy Clear