PHP Goto Detail link
I've built a PHP version of the Goto Detail Page link that goes to a mySQL/PHP DELETE records page.. but when I click on the link to go to that page (where it retrieves the record in a PHP recordset to get confirmation before deleting), instead the originating page just executes the delete (it looks like) and reloads minus the newly deleted file. I need to click on this link, go to the confirmation page so that they can decide for sure that they want to delete it, and click the submit button for the page to execute the Delete behavior.
Why? The code piece linking to the confirmation pages is:
<a href="del_entry.php?UID=<?php echo $row_Recordset1['UID']; ?>">Delete</a>
Help?
