PHP Echo / Print
Outputting data.
PHP echo and print Statements
With PHP, there are two basic ways to get output: echo and print.
The PHP echo Statement
echohas no return valueechocan take multiple parameters (although such usage is rare)echois marginally faster thanprint
The PHP print Statement
printhas a return value of 1 so it can be used in expressionsprintcan take one argument