I am having difficulty deleting rows from my database.
I have a delete button in a form that when it is clicked then performs a DELETE FROM query but it doesnt work and Im wondering whether my theory is completly wrong (the theory being that having a form and submit button to INSERT data into a database works so why not use that to delete stuff? This is the code
$league_id = $_GET['id'];
$delete_entry = "<form action=\"".$_SERVER["REQUEST_URI"]."\ method=\"post\">
<input type=\"submit\" name=\"ooops\" value=\"Delete Entries\"></p>
</form>";
if ($_POST['ooops']) { //if the data is rubbish then delete and start again...
$delete_lge_sql = "DELETE FROM st_position WHERE league_id = '$league_id'";
$delete_lge_res = mysqli_query($statto, $delete_lge_sql)
or die(mysqli_error($statto));
}
When I click Delete Entries the page reloads and the URL looks like this
page.php?ooops=Delete+Entries
Many thanks for any help
?ooops=Delete+Entriesappended to it does not fit with what your code shows. Your code shows your form as being a POST, so the URL shouldn't change. -- Are you sure the POST is going through properly? Run an echo afterif ($_POST['ooops'])to make sure that the posted data is coming through properly. – Jeremy1026 Oct 19 '12 at 15:57action=\"".$_SERVER["REQUEST_URI"]."\it should beaction=\"".$_SERVER["REQUEST_URI"]."\"(note the extra " at the end) my guess would be this is blocking the method="POST", making it a GET from not a POST form. – Re0sless Oct 19 '12 at 16:02