I have an online Form page with space for Amount and Currency. I send my clients a report (in Word) which has a link to the Form where they enter Amount and Currency.
I want them to click the link and it automatically pushes the price and currency into the Form fields.
How can I do this?
Regards,
Jon
what method are u using??
if u using method POST
$whatvalue=$_POST['yourvariable'];
for GET method $whatvalue=$_GET['yourvariable'];
I was thinking is it possible to use something like:
http://www.mysite.com/form.php?amount=200¤cy=dollars
Is that possible? Would that work?