hi, in html you can make a form that posts info to another page. can you post info from a hyperlink with out a form so you send info with out the user saying what to send.
Printable View
hi, in html you can make a form that posts info to another page. can you post info from a hyperlink with out a form so you send info with out the user saying what to send.
Only if the form accepts querystring parameters.
what do you meen query string parameters? my form i would like to post to is a php page. i have allready made a form but i would like to get rid of the form and post the info to the php page using a hyperlink insted of the form. the form and the php file are here (http://dwsdev.ath.cx or http://dws05.ath.cx/dev) you enter a media file name in the text box and the php file sets a windows media player control's url value to what was posted.
This should explain it some:
http://www.phpbuddy.com/sub_articles...er_articles=12
so all i got to do is put $link = $_GET['link']; into my php page?
thanks, it works.