> -----Original Message----- > From: Charles Wiltgen [mailto:lists@;wiltgen.net] > Sent: 13 November 2002 18:28 > > Here's what I > was using: > > Form: > > <form method="post" action="http://domain.com/" name="the_form"> > <input type="hidden" name="foo" value="DUMMY"> > </form> > > Link: > > <a href="http://coremessaging.com/" > onClick="document.the_form.foo.value='5'; > document.the_form.submit();">Next</a>
... but there's *still* no GET variables involved here: the form has method="post", and that's not going to change just because you submit it with JavaScript -- the information about "foo" will go in the POST section of your request, and nowhere near the visible URL. Yours, even more confused, Cheers! Mike --------------------------------------------------------------------- Mike Ford, Electronic Information Services Adviser, Learning Support Services, Learning & Information Services, JG125, James Graham Building, Leeds Metropolitan University, Beckett Park, LEEDS, LS6 3QS, United Kingdom Email: [EMAIL PROTECTED] Tel: +44 113 283 2600 extn 4730 Fax: +44 113 283 3211 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php