Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created September 25, 2016 05:25
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/055c09d0b571d608ed7e8afc5bde261b to your computer and use it in GitHub Desktop.
Save codecademydev/055c09d0b571d608ed7e8afc5bde261b to your computer and use it in GitHub Desktop.
Codecademy export
<html>
<head>
<title>Modifying Elements</title>
</head>
<body>
<p>
<?php
$languages = array("HTML/CSS",
"JavaScript", "PHP", "Python", "Ruby");
echo $languages[2];
$languages[2] = "java";
echo $languages[2];
$languages[2] = "java";
// Write the code to modify
// the $languages array!
?>
</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment