hey there, what I want to do is transform search results into hyperlinks.
This part isn't really the hard part I don't think. But what I would like it have a generic details.php page which would bring up everything associated with the url you clicked.
For example, my database is a book catalogue. So you search for Harry Potter and it brings up every Harry Potter book in the database, now instead of statically creating a separate page for each book I want to have a generic php file so that when you click on Harry Potter and the Goblet of Fire the generic php script would show everything related to that title. The trouble I'm facing is how to go about setting the variable in the show details file.
I don't have any code yet because I've been trying to work the logistics of it on paper first.
I'm thinking something like
for(number of search results)
print http://localhost/details.php/q=$title
I'm just not sure how to go about setting the title so that it gets passed over to the details script when you click the link. I might have to just dive in and see what happens.