Just add links to the rows using standard anchor tags that go to the details page like:
<a href="details.php?ID=<?php echo($row_Recordset1['KeyColumn']); ?>"><?php echo($row_Recordset1['yourDisplayedColumn']); ?></a>
Then on your details page you can use the simple view and filter your recordset KeyColumn using the URL parameter ID that you added to the link referenced above.
If you attach a copy of your results and details pages you have so far, I could be more specific with line numbers.