This site is mobile accessible. Press the "Tap Here" button to use a different font-size.


Smartphone icons created by Freepik - Flaticon

Declaring PHP Variables

Hello world!
5
10.5

<?php
// declare the variables
$txt = "Hello world!";
$x = 5;
$y = 10.5;

// display the variables
echo $txt;
echo "<br>";
echo $x;
echo "<br>";
echo $y;
?>