<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
	<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
	<link rel="stylesheet" type="text/css" href="style.css" />
	<title>Resources</title>
</head>

<body>

	<?php
		$xml = simplexml_load_file("resources.xml");
	
		echo "<p class=\"root\">".$xml->getName()."</p><br />";
	

		foreach($xml->resource as $resource)
  		{
  			echo "<div class=\"resource\">";
  			echo "<p class=\"title\">"."<a href=\"".htmlspecialchars($resource->link)."\">";
  			echo $resource->category."::".htmlspecialchars($resource->name)."</a>"."</p>";
  			echo "<p class=\"description\">".htmlspecialchars($resource->description)."<br />";
  			echo "Added by: ".htmlspecialchars($resource['author'])."</p>";
  			echo "</div><br />";
  		}
  	?>

</body>
</html>