Echo in PHP
Reference with some background information on PHP Echo.
Echo is a language construct of PHP, and is used to output Data to the Browser.
Example
Below example outputs the content of a variable, called $str.
$str = '<p>Welcome to Brugbart!</p>'; echo $str;
Would output Welcome to Brugbart! in a paragraph.