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

PHPize Online / SQLize Online  /  SQLtest Online

A A A
Login    Share code      Blog   FAQ

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

Copy Format Clear
CREATE TABLE users ( id VARCHAR(255), email VARCHAR(255), encrypted_password VARCHAR(255), imagen VARCHAR(255), nombre VARCHAR(255), apellidos VARCHAR(255), activo VARCHAR(255), token_firebase VARCHAR(255) );

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

Copy Clear
Copy Format Clear
<?php mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT); $mysqli->prepare("SELECT usuarios.id, usuarios.email, usuarios.encrypted_password, usuarios.imagen, usuarios.nombre, usuarios.apellidos, usuarios.activo, usuarios.token_firebase FROM users usuarios WHERE usuarios.email = ?");
Copy Clear