nac1987 Posted February 25, 2012 Share Posted February 25, 2012 Please reply in simple terms, 'cause I'm simple! Hello all. If I have a list of links on a page like: >Manchester United >Manchester City >Aresnal How do I make clicking one of the links then query my database for that record? So I click on manchester united and the body of the page calls all the information on the database for that club? Surely I don't need each page to link to their own PHP page do I? The manchester united link doesn't need to point to manchester-united.php? Can I have all the links pointing to club.php that changes in content depending on the link that was clicked? How do I achieve this? What's this called? Please help! Thanks all in advance. Quote Link to comment https://forums.phpfreaks.com/topic/257759-link-to-query/ Share on other sites More sharing options...
freelance84 Posted February 25, 2012 Share Posted February 25, 2012 One possible way: <a href="www.somedomain.com?club=manu">manchester are scum</a> The php script can the access the club variable by using the superglobal $_GET (note the ? seperating the url and the get stuff): $club = $_GET['club']; Quote Link to comment https://forums.phpfreaks.com/topic/257759-link-to-query/#findComment-1321118 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.