Programming Code Center(PCC)
[PHP]

(PCC)::[How-to-Create-different-variables-in-php]::[php]

File Name : index.php

<!DOCTYPE html>
<html>
<body>

<?php
$txt = "Hello world!";
$x = 5;
$y = 10.5;

echo $txt;
echo "<br>";
echo $x;
echo "<br>";
echo $y;
?>

</body>
</html>

Output :

"; echo $x; echo "
"; echo $y; ?>