So for the admin page of where "reviews" can be written and posted, I've created a delete article function but it's not one I wanted.
The one I have now works the following way...
A while loop prints out the specified information with their associated IDs.
After they are all printed, there is a box under them all prompting you to enter the id number of the comment to delete.
The number which is entered is posted to another page where it is found in the database and that specific comment is deleted.
I want to use a delete button under each comment instead. But I would need to post the value which is printed out and there isn't an option to post FROM php. Is there an obvious method which I'm not noticing maybe? some enlightenment would be good!
Hopefully my issue was understandable^^