Hi
I'm trying to parse a recordID from a table of data in one page and pass data based on the chosen record to another page.
The data is taken from a database and I've used recordsets:
I have one recordset called rs_search which contains data from 2 tables called property_details and address_images, where they are connected by the field prop_id. (The address_images table also has the field images_id.
What I'm trying to do is have the link below take data from a subset of information and then show an extended amount of the same information on another page called propertylisting_details.php
The address_images table contains the images which are to be shown in the propertylisting_details.php page. The rest of the information is taken from the property_details table.
The link below is not picking up any record id from prop_id.
Any help would be much appreciated. Many thanks
propertylisting_details.php?recordID=<?php echo $row_rs_search ['prop_id']; ?>