<?php $name = "Ada"; // string $age = 36; // integer $height = 1.68; // float $isMember = true; // boolean $scores = [90, 85, 78]; // array $note = null; // NULL echo $name . " is " . $age . " years old."; ?>
Click Run to execute this code.