<?php
include('../includes/header.php');
error_reporting(E_ALL);
?>
<h2>My Array Example</h2>
<form method="POST" action="">
<label for="category">Choose a category:</label>
<select name="category" id="category">
<option value="fruits">Fruits</option>
<option value="art supplies">Art Supplies</option>
<option value="pets">Pets</option>
</select>
<input type="submit" value="Submit">
</form>
<?php
$data = [
"fruits" => ["Apple", "Banana", "Orange", "Cherries"],
"art supplies" => ["Paint Brush", "Pencil", "Canvas", "Crayon"],
"pets" => ["Dog", "Cat", "Parrot", "Snake"]
];
if ($_SERVER["REQUEST_METHOD"] == "POST" && isset($_POST['category'])) {
$category = $_POST['category'];
if (array_key_exists($category, $data)) {
echo "<h3>Items in the category: " . ucfirst($category) . "</h3>";
echo "<ul>";
foreach ($data[$category] as $item) {
echo "<li>" . htmlspecialchars($item) . "</li>";
}
echo "</ul>";
} else {
echo "<p>Invalid category selected.</p>";
}
}
include('../includes/footer.php');
?>