classwork

This commit is contained in:
Joshua Ashton
2025-02-06 13:16:23 -07:00
parent e97c36a773
commit fd3efd1226
3 changed files with 32 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
<?php
$person = array(10 => 'beavis', 'jones');
echo '<h4>';
foreach ($person as $key => $p)
echo "<h4>$key - $p</h4>";
echo '</h4>';
?>
+5
View File
@@ -0,0 +1,5 @@
<h1>beavis</h1><h1>butthead</h1>
<h1>beavis</h1><h1>butthead</h1>
<h1>butthead</h1><h1>and</h1>
beavisandbutthead
<h1>beavisandbutthead</h1>