Learn PHP for Developing Web Application

Learn to build web applications with PHP and MySQL, Start your own blog, e-commerce site. In this tutorial you will learn basic, syntax, examples, functions, loops, cookies, sessions, file handling, data connectivity, etc.

PHP Echo


PHP echo is a language construct not a function, so you don't need to use parenthesis with it. But if you want to use more than one parameters, it is required to use parenthesis.

The syntax of PHP echo is given below:

void echo ( string $arg1 [, string $... ] )

PHP echo statement can be used to print string, multi line strings, escaping characters, variable, array etc.


PHP echo: printing string

<?php
echo "Hello by PHP echo";
?>

PHP echo: printing multi line string

<?php
echo "Hello by PHP echo
this is multi line text printed by
PHP echo statement";
?>

Next