alright - i assume you have some sort of unique id in the "to_rent" table?
then modify this line
echo "$row->User_Name, $row->To_Rent_Price $row->Property_Details<br />" ;
to make it look like this
echo "<a href=\"details.php?classified_id=$row->id\">$row->User_Name, $row->To_Rent_Price $row->Property_Details</a><br />" ;
this will turn the result into a clickable line, going to the page details.php.
the file details.php will be responsible for - you guessed it - displaying the full details of the item. the requested item is the one, which has the id (in the to_rent table) $GET['classified_id']. so all you need to do in details.php is
SELECT *
FROM to_rent
WHERE id = $_GET['classified_id'];
and display the result however you like.
once you have this working, read up on security topics, such as sql injection!
i hope this helps!