Posted by Arjen on 02/22/07 08:30
elia schreef:
> Hello. Yes, already ask but no answers for this little problem.
> I've got a form and 3 steps or page for the same form. If we come back
> to the first page, the states of button radio are lost.
> A solution could be with "session_start()" and $_cookie but I don't
> know how to do it!
One way to do it.
foreach ($_POST as $key=>$val)
{
echo '<input type = "hidden" name="'.htmlentities($key).'"
value="'.htmlentities($val).'" />';
}
--
Arjen
http://www.hondenpage.com - Mijn site over honden
[Back to original message]
|