Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created September 25, 2016 06:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/32cc7f881cfce2323664ea4851546cbb to your computer and use it in GitHub Desktop.
Save codecademydev/32cc7f881cfce2323664ea4851546cbb to your computer and use it in GitHub Desktop.
Codecademy export
<html>
<head>
<title></title>
</head>
<body>
<p>
<?php
$sentence = array("I'm ", "learning ", "PHP!");
foreach($sentence as $word){
echo $word;
}
?>
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment