Skip to main content
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>
Popular posts from this blog
Comments
Post a Comment