main difference echo & print in php
echo is the most primitive of them, and just outputs the contents following the construct to the screen,it takes multiple parameter.Echo is faster when compared with print.
print is also a construct (so parentheses are optional when calling it),it does not take multiple parameters.
Echo does not have a return value, where as print returns a value indicating successful execution. Print returns 1 or 0 depending on the success