Been working on a small project for myself and have gotten lost in this part
if(empty($_REQUEST['ID'])) {
echo "tuks";
} else {
$id = $_REQUEST["ID"];
$sql = "DELETE FROM list WHERE ID = $id";
}
Upon form submit, I'm getting the following error:
Notice: Array to string conversion
Searched a couple of threads with no luck.