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>';
?>