How do I do a Search Result Page where each result is a link ?
I'm developing a web based internship control as a college project.
The student can search for internship positions, offered by some companies registered in the system.
My idea is this: The student searchs for internship positions, in this search they choose some parameters, like what they want to do, and some areas that they have knowledge on, and other things.
The search result shows a page with the internship positions corresponding to the chosen parameters. Each result will be a link to the same one page but they'll have their own ID. The result page will have static texts and those will load from the database according to the chosen result's ID.
For example: Search.jsp will have a form with search parameters.
SearchResult.jsp - will have the links of search results.
ShowResult.jsp - will have the information of a result from a database.
My problem is: how do I do that exactly?

