PHP Echo and Print

By Solve Program

PHP Echo and Print

PHP Programming
PHP Programming

PHP has two method to preview or output the code
  • echo
  • print
Two of echo and print have same function and the differences of echo and print are small, echo has no return value while print has return the value of 1 so print can be used in expression.

PHP echo Example

Display Text



Display Variables


PHP print Example

Display Text



Display Variables