Php: Basic Review

Post Reply
User avatar
Jason
Site Admin
Posts: 767
Joined: Sun Dec 21, 2025 8:56 pm

Code: Select all

<!DOCTYPE html>

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

<body>

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

<?php

$age = 23;

$_name = "Annie";

$class_1st_period = "Calculus";

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