1.	<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2.		"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3.	<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
4.	<head>
5.		<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
6.		<title>No Soup for You!</title>
7.	</head>
8.	<body>
9.	<h1>Mmm...soups</h1>
10.	<?php // Script 7.1 - soups1.php
11.	/* This script creates and prints out an array. */
12.	// Address error management, if you want.
13.	
14.	// Create the array:
15.	$soups = array (
16.	'Monday' => 'Clam Chowder',
17.	'Tuesday' => 'White Chicken Chili',
18.	'Wednesday' => 'Vegetarian'
19.	);
20.	
21.	// Try to print the array:
22.	print "<p>$soups</p>";
23.	
24.	// Print the contents of the array:
25.	print_r ($soups);
26.	
27.	?>
28.	</body>
29.	</html>