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 // Variable assignment $number1 = 10; $number2 = 20; // Doing some math $sum = $number1 + $number2; $product = $number1 * $number2; // Output the results echo "The sum of $number1 and $number2 is: $sum\n"; echo "The product of $number1 and $number2 is: $product\n"; // If statement to check if the sum is greater than 15 if ($sum > 15) { echo "The sum is greater than 15\n"; } else { echo "The sum is not greater than 15\n"; } // A loop to print numbers from 1 to 5 echo "Numbers from 1 to 5:\n"; for ($i = 1; $i <= 5; $i++) { echo "$i\n"; }
Copy Clear