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 attendance (id int, present varchar(32));

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

Copy Clear
Copy Format Clear
<?php $attendanceList = [18354012,18354013,18354014,18354015]; $present = "FALSE"; $insertData = array_map( fn($el)=>['id'=>$el, 'present'=>$present], $attendanceList ); $db::table("attendance")->insert($insertData); // Select using Laravel $attendance = $db::table("attendance")->get(); print_r($attendance);
Copy Clear