PHP COURSE • LESSON 08
PHP Numbers
PHP can store integer and floating point numbers.
Integer Example
PHP Code
<?php
$x = 100;
echo $x;
?>
Float Example
PHP Code
<?php
$price = 99.99;
echo $price;
?>