Overview of Basic PHP Commands
The echo command outputs something
to the screen. Let's output some string:
<?php
echo 'hello';
?>
Let's output some number:
<?php
echo 123;
?>
The echo command outputs something
to the screen. Let's output some string:
<?php
echo 'hello';
?>
Let's output some number:
<?php
echo 123;
?>