echo outputs content to the console or the web browser.
Example:
echo "Hey, this is now showing up on your screen!";
return returns a value at the end of a function or method.
Example:
function my_function()
{
return "Always returns this";
}
echo my_function(); // displays "Always returns this"