Hi,
My form opens with someting passed via Query String. Ex: http://mysite.com?price=10.00
So i User a GET function. Now I want to use this $price to pass to the next page via Query String.
In Confirmation, I choose Redirect and activated the pass via query string like this:
?name=[Your Name:30]&address=[Your Address:31]&finalPrice=<?php echo $price; ?>
But it wont work. The $finalPrice goes blank.
How can I do that?
Thanks!!!