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
<?php echo "Current Date and Time: " . date("Y-m-d H:i:s"); ?>

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

Copy Clear
Copy Format Clear
<?php // Step 1: Create associative array $student = array( "name" => "Charmi", "age" => 18, "grade" => "A" ); // Step 2: Print only the name echo "Student Name: " . $student["name"] . "<br>"; // Step 3: Add a new key-value pair $student["subject"] = "Math"; // Step 4: Print the updated array echo "<pre>"; print_r($student); echo "</pre>"; ?>
Copy Clear