I know that I can use the $_GET['Hidden1'] in the if statement...
but I need to use the TutorialNumber hidden form field for a reason.
I want to be able to use the value assigned to the HiddenFormField in this currentpage i'm working on which is called TutorialNumber...
Hidden1 is a hidden form field I have in a previous page I use it to set the value of TutorialNumber when this current page loads.. sorry if that is a little confusing...
Here's what i'm doing..
I create a new hidden form field when the page i'm working on loads called TutorialNumber assigning it the value of Hidden1 from the previous page.
<INPUT TYPE=HIDDEN Name=TutorialNumber Value=<?php echo $_GET['Hidden1']; ?>>
What I need to know is if I can read the value of TutorialNumber in php using the TutorialNumber hidden form field somehow.
If that is still confusing, i can try to post a little more code on what i'm doing.