<html>

<head>
<title>Confirmation Form</title>
<style>
body  { font-family:Verdana;
        color:maroon;
        background-color:aliceblue; }
input { font-family:Verdana; }
td    { text-align:left; }
</style>
</head>

<body>
<h3>Your information/order is confirmed</h3>

<p>Date:  
<script type="text/javascript">
var d = new Date( );
document.write(d.toString( ));
</script>
</p>

<!-- The line in  delimiters is a PHP statement that prints
        all the values of the controls on the submitted form. -->

<pre style="font-weight:bold;font-size:120%">
<? print_r($_GET); ?>
</pre>

</body>
</html>