so the name of the form element is hiddenField2:
name="hiddenField2"
the code to return that value would be:
<?php echo(isset($_POST['hiddenField2'])?$_POST['hiddenField2']:""); ?>
assuming the form uses the post method, if it uses the GET method, change POST to GET