I think I have read the answer reading through several forums and many posts, but I am not getting it. Please help... I am a novice.
I have a page that displays some info for all the records in a database. It's for real estate listings, so the page displays the street address, subdivision and a description of the property. This page is created dynamically from a database. This page is called allListings.php.
I would like to add a link to the street address that would take you to a detail page -- called inventory.php -- where more information about the property can be viewed.
Help?
Here is what my last try looked like:
<a href="\inventory.php?id=" . $id . "\"><?php echo $row_rsAllListings; ?></a>
While inventory.php displays the information I want, it is pulling the first record in the database regardless of the property I click.
I have attached my two pages.