without the use of javascript, is it possible to click on a link and send the id of the link to php for doing a mysql query?
what i am going for is two css boxes, the first one being popluated with questions from a database. this can be easily done when the page loads. and i've gotten this far already. when i click on a question, what i want to happen is for the id of the clicked question to be sent to php so that it does a second query, retrieving the answer associated with the id from a database.
i know that i can load both the questions and answers simultaneously when the page loads, but the amount of data in the answer portion may be really large if there are a fair amount of questions.