Feb 5th, 2011, 11:56 AM
Hi Robert,
one solution can also be to use http_get_vars...
on the last page of the form you modify the parameter "next_page"...
and on the submit page you use...
Cheers,
Hannes
one solution can also be to use http_get_vars...
on the last page of the form you modify the parameter "next_page"...
PHP Code:
"next_page" => "submit.php?variable=".$fields['myfield'],
PHP Code:
<?php
echo $HTTP_GET_VARS["variable"];
?>
Cheers,
Hannes