So I'm using wordpress, but the wordpress community doesn't seem to know enough about strict PHP or anything to assist in this scenario.
I've got a plugin called Gravity Forms I'm using to create a pretty elaborate form/survey. The deal is though, it's a multi-part form and I'm not sure how to get ALL the form data from the first to the second.
I can pass data via Query String, but I'm passing 25 fields of information, so it's not quite going to work for me.
As soon as the form1 is submitted, can I then have it redirect to page two, which has some code in it like
$foo = $_POST['field_1_1'];
where field_1_1 is the name of the input from the previous form?
I've used $_GET for query strings before, but I'm not sure if the example I just stated is how to use $_POST