I recently started working with PHP, and MySQL. And I have come with a little problem, I have tried a couple of things to solve it and they are not working. Well, basically I am trying to put a link on a page, but that page requires me to pass a value, here's an example below, e.g.
If I am on this page for example
http://www.mypage.com/view.php?prop_id=5
and I want to add a link, that would translate to
<a href="submit_docs.php?prop_id=5 ">Click </a>
How do I accomplish this, how do I pass the php variable "prop_id" to a href link? Can someone shed me some light on this matter? Thanks a lot :)