views:

34

answers:

1

Hi, I am currently trying to code a link so I do not need to enter the values everything I need to check for my registered mails.

Example here is

http://singpost.com/ra/ra%5Farticle%5Fstatus.asp where u need to type RR624613237SG into the box to get the information

            <INPUT type=submit class=buttons name=go value="Track" onClick="javascript:check_input();">

I have tried linking as

urlontop?Track=RR624613237SG

and other methods but failed.

Thanks.

+1  A: 

You can only encode GET values in the url, and not POST parameters.

jbochi
jbochi is right! POST is for security. GET is so you can bookmark and return later.
Patrick Beardmore
damn. thank you very much.
Jeff