difference between “echo” and “print” in PHP?
echo is a constructor and print is a function.echo cannot take arguments but print can take arguments.
echo is a constructor and print is a function.echo cannot take arguments but print can take arguments.