UQ Students should read the Disclaimer & Warning
Note: This page dates from 2005, and is kept for historical purposes.
<?php echo "<?xml version=\"1.0\" encoding=\"iso-8859-1\"?".">"; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Internet Interface Design - Assignment 3</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<?php
// Parse $file for tags
function include_tag($tag, $file) {
$data = implode ('', file ($file));
preg_match(
"/<$tag.*>(.+)<\/$tag>/sU",
$data,
$matches
);
eval('?>'.$matches[1]);
}
// <? Silly comment to fix editplus code colouring
?>
<style type="text/css">
<!--
body {
background: #D6E6F7;
color: #000040;
}
.content {
text-align: center;
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 1ex;
}
.content td {
border: 1px solid #A5C5E7;
text-align: center;
color: #000040;
}
-->
</style>
</head>
<body>
<p id="one"><a href="#one" title="View site 1">Telstra</a> | <a href="#two" title="View site 2">ITEE</a> | <a href="#three" title="View site 3">azarted</a> | <a href="#results" title="Results">Results</a></p>
<?php print(include_tag('body','COMP1501_3_telstra.html')); ?>
<hr id="two" />
<?php print(include_tag('body','COMP1501_3_ITEE.html')); ?>
<hr id="three" />
<?php print(include_tag('body','COMP1501_3_azarted.html')); ?>
<hr id="results" />
<?php print(include_tag('body','COMP1501-assignment-3-results.html')); ?>
</body>
</html>