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

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

Copy Clear
Copy Format Clear
<?php error_reporting(E_ALL); ini_set('display_errors', 1); $alunos = array ( array("João", 8.7, 9.4), array("Maria", 9.2, 8.9), array("Luis", 7.8, 8.4), array("Fernanda", 8.7, 9.1) ); echo $alunos[0][0].": P1: ".$alunos[0][1].", P2: ".$alunos[0][2]."<br>"; echo $alunos[1][0].": P1: ".$alunos[1][1].", P2: ".$alunos[1][2]."<br>"; echo $alunos[2][0].": P1: ".$alunos[2][1].", P2: ".$alunos[2][2]."<br>"; echo $alunos[3][0].": P1: ".$alunos[3][1].", P2: ".$alunos[3][2]."<br>"; ?>
Copy Clear