Php: Basic Review

Post Reply
User avatar
Jason
Site Admin
Posts: 749
Joined: Tue Jul 01, 2025 10:13 am

Code: Select all

<!DOCTYPE html>

<head><title>Basic Php Review</title></head>

<body>

<!-- basic-php-example.php -->

<?php

$age = 25;

$_name = "Joy";

$class_1st_period = "math";

echo "{$_name} who is {$age} has {$class_1st_period} at the start of the day.";

echo "$_name" + " " + "who is" + " " + $age + " " + "has" + " " + $class_1st_period + " " + "at the start of the day.";

# What a nice review.

// Yes it is.

/* I second
that. */

?>

</body>

</html>

 

POSTREACT(ions) SUMMARY

Post Reply