Forum Moderators: coopster
I have form on multiple pages with one text input and two hidden fields.
When the user submits the form, they are taken to:
/actionpage.php?input=x&hidden1=y&hidden2=z
On the action page there is a third party JavaScript that I can not change that requires the two hidden fields.
I am wondering if I can setup something at the top of the action page that establishes the two hidden fields, allowing me to take them off from all my pages while still allowing the third party script to work.
Any ideas?
Thanks.
$_GET['hidden1'] = "something";
$_GET['hidden2'] = "something else";