Creating and Declaring PHP Variables


Creating and Declaring PHP Variables

<!DOCTYPE html>
<html>
<body>

<?php
$Z = "Hello YAAK!";
$a = 10;
$b = 16.6;

echo $Z;
echo "<br>";
echo $a;
echo "<br>";
echo $b;
?>

</body>
</html>

Comments