What is the difference between echo and print statement in PHP?
Multiple expressions can be given in echo statement, where as print cannot take multiple expressions.
Echo does not have a return value, where as print returns a value indicating successful execution.
Echo is faster when compared with print.
Echo does not have a return value, where as print returns a value indicating successful execution.
Echo is faster when compared with print.