Reputation: 33
In My Source When I press the Remove Button,inside isset code not excuted.can any one help me,
<body>
<form method="post" action="<?php echo $_SERVER['PHP_SELF'];?>">
<?php
$dbc=mysqli_connect("localhost","root","","elvis_store") or die("Error Connecting to Mysql Database");
if(isset($_POST['submit'])){
echo "Hello";
foreach($_POST['todelete'] as $delete_id){
$query="DELETE FROM email_list WHERE id=$delete_id";
mysqli_query($dbc,$query) or die("Error Querying Database");
}
echo "Customer(s) Removed";
}
$query="SELECT * FROM email_list";
$result=mysqli_query($dbc,$query)or die("Query Syntaxt is Incorrect");
while($row=mysqli_fetch_array($result)){
echo '<input type="checkbox" value="' . $row['id'] . '" name="todelete[]" />';
echo $row['first_name']." ".$row['last_name']." ".$row['email'];
echo "<br/>";
}
mysqli_close($dbc);
?>
<input type="submit" name"submit" value="Remove"/>
</form>
</body>
Upvotes: 0
Views: 120
Reputation: 3225
First of all the html is incorrect -> name"submit" have to be name="submit"
Second, I recomened you to first check if $_POST['submit'] is set and if it is do the php else show the form.
Upvotes: 0