What is the Difference between echo and print

<?php echo 'Hello world'; print 'Hello '; ?>

Echo doesn’t return a value but print does. Also, echo is slightly faster.

EDIT: More on the subject here: http://www.w3schools.com/php/php_echo_print.asp