--- title: Echo and Print --- ## Echo and Print The echo and print functions provide a way to write out the value of a variable or argument to the screen. ### echo The `echo()` function writes out the value of a variable or argument to the screen. ```PHP ``` ### print The `print()` function out the value of a variable or argument to the screen. ```PHP php.net echo() manual * php.net print() manual * php.net print_r() manual