How to make T&C page?

edited
NOP Design Free Software Support Forum
http://www.nopdesign.com/forum/
[code]
<form name="something" action="tandc.html" method="post">
[/code]
<form name="blarg" action="checkout.html" method="post">
<input type="checkbox" name="agree">I Agree to terms and condition.
<input type="submit" value="Continue to Checkout">
</form>
<?php
$iagree = $_REQUEST['agree'];
if ($iagree != 1) {
die ("Please click back. You must agree to our Terms and Conditions");
}
?>