ok this is the input on the first page
<input type=checkbox name=road value=true>
this is the second page
$road = $_REQUEST['road'];
if($road=true){
echo "<TD><input type=checkbox value=on>Road Biking</TD>";
}else{
echo "<TD><input type=checkbox>Road Biking</TD>";
}
Like I say I am PHP stupid so please forgive my ignorance