Here is an example:
<?php
Echo "My PHP Page";
?>
We can see that the PHP code is echoing the line My PHP Page, however, it is the server that reads this code and then knows to send My PHP Page to your browser. Since the rest of the code is just instructions for the server, it dosen't send anything else. So a view source or a save will simply be the text My PHP Page, that was sent to the browser from the server when it read our file.

