<?
	$xml = new SimpleXMLElement(file_get_contents("store.xml"));

	$category = $_GET["category"];
	$items = $xml->xpath("//category[@name='$category']/items/item");
?>
<? require_once("begin.php"); ?>

		<table border="1" cellpadding="10">
		<th colspan="3" align="left">Item(s): <? print($category); ?></th>
		<? foreach($items as $item) { ?>
			<tr>
				<td><? print($item["name"]); ?></td>
				<? foreach($item->price as $price) { ?>
					<td><a href="add2cart.php?name=<?print(htmlspecialchars($item["name"]));?>&size=<?echo $price["size"]?>"><? print($price); ?></a></td>
				<? } ?>
			</tr>
		<? } ?>
		</table>
		
<? require_once("end.php"); ?>