Echo
From Web Design and Programming
echo is a PHP language construct used to output one or more strings.
[edit] Example
[edit] Input
<?php echo "Hello World"; ?>
[edit] Output
Hello World
echo is a PHP language construct used to output one or more strings.
<?php echo "Hello World"; ?>
Hello World