I ve searched the answer to this question for days and I really need an answer.. so.. I have a database and a script that fetches the data from the database:
while ($row = mysql_fetch_array ($query))
{
$name = $row['name'];
$email = $row['email'];
$tut_title = $row['tut_title'];
$URL = $row['URL'];
$description = $row ['description'];
$Status = $row['Status'];
echo "<tr>....<form action="samepage.php"><input type="submit"></form>
....
When clicked the submit form, same page is being loaded and an if(isset $POST['submit']) instruction comes up. When this action occurs, I need to delete that specific record from the database. (only data for the last entry will be stored)
So I need to store the data for that specific record somewhere inside that while, so I can use it to delete.. I don't know if you can make heads and tails out of my request but I will answer to any of your questions because I really don't know how to explain it better.
Thank you so much in advance guys.