Echo - nolenfelten/Codecademy-PHP GitHub Wiki

The echo function outputs strings. If you type: PHP will output Hello!.

Make sure to end your line of PHP code with a semicolon.

Instructions On line 8 in between the , use echo to output "I'm learning PHP". Make sure to end your PHP code with a semicolon.

<!DOCTYPE html>
<html>
	<head>
	</head>
	<body>
		<h1>
		  <?php
				echo "I'm Learning PHP" ;
		  ?>
		</h1>
	</body>
</html>
⚠️ **GitHub.com Fallback** ⚠️