Script 1.4 Comments

Output

This is a line of text.
This is another line of text.

Now I'm done.

Source
<?php
	# Script 1.4 - comments.php
		# Created September 4, 2013
		# Created by Ashlie Taylor
		# This script demonstrates the three methods of commenting code in php.
		echo '<p>This is a line of text.<br />This is another line of text.</p>';	
		/* echo 'This line will not be executed.'; */
		echo "<p>Now I'm done.</p>";  
	// End of PHP code.
?>