PHP Output of Numbers
In the following example, we assign a number to the variable
$num and then output
it to the screen:
<?php
$num = 5;
echo $num;
?>
Code execution result:
5
In the following example, we assign a number to the variable
$num and then output
it to the screen:
<?php
$num = 5;
echo $num;
?>
Code execution result:
5