Previous | Home | Next |
echo()
echo() function output one or more strings.
Syntax:echo(strings);
Example1:
<?php echo "Hello world..!!"; ?>
Output:
Example2:
<?php $str = "Gud Morning..!!"; echo $str; echo "<br>Have a nice day!!!"; ?>
Output:
Gud Morning..!! Have a nice day!!!
Previous | Home | Next |