I am trying to send a specific cell to a PHP page and deleting that row which contains this specific cell. But it appears I am doing something wrong.
This is how I sending the information:
echo "<td><a href='delete.php?id= '$row['pid']''>Delete</a>< /td>";
and using it like this:
$del = "DELETE FROM sca WHERE pid = $_GET['id']";
My database connections are working well but I couldn't manage to send the 'pid' integer to a PHP page.
Thanks