Hi,
I currently have a form that gets data and outputs some links that can directly open URLs that I need without passing variables to another script which displays the results.. the form is something like <form name=test>
Now, I need to pass 2 variables to the script page, but not the rest of the variables..
I tried to use
<form method=GET name=test action=script.php>
it worked, but then all variables gets passed and I get these junk stuff on my URL
So the question is How to pass some selected variables to another script?
eg. I have the field <input type=textfield name=date value=2000>, and I would like another script to be able to read that variable 'date' without using the Get or post methods taht passes all the variales
Thank you.