There will be a image/text link on every page saying something like: Email this to your friends
1st possiblity: Make a form, containg a hidden variable which will be URL and that I can get through $_POST[]. Question is, (this is pure html actually), can I have a text link being the submit button of a form??????
2nd possibility: Have a text link linking to something like : send_mail.php?url=$url
only problem is that $url is its self a bunch of php variable, and will look somethimng like : $url=c=1&a=3. I cant obviously send that through the url. Is it possible to have something like $url="c=1&a=3" such that I have:
Code: Select all
send_mail.php?url="c=1&a=3"Thank you all in advance