PHP Files - nolenfelten/Codecademy-PHP GitHub Wiki

You might have noticed that our main file is now index.php instead of index.html. This is important! It tells the PHP interpreter that there's PHP code in the file to evaluate.

Instructions Ready to learn a few PHP commands? Click Save & Submit Code to get started!

<!DOCTYPE html>
<html>
	<head>
	</head>
	<body>
		<p>
		  <?php
			echo 'Nolen Felten' ;
		  ?>
		</p>   
	</body>
</html>
⚠️ **GitHub.com Fallback** ⚠️