I have wriiten as
<?php
  if (isset($_POST['delete'])):
    $size = count($_POST['checkbox']);
    for ($i=0; $i<=$size-1; $i++) {
    $id = $_POST['checkbox'][$i];
    $wpdb->query("DELETE FROM wp_submitted_form WHERE id =".$id);
    }
   header('Location: http://' . $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']);
  endif; 
?>
When submit button is clicked it throws error message as:
Cannot modify header information - headers already sent by (output started at /home/wizcorea/public_html/wp-admin/includes/template.php:1657) in /home/wizcorea/public_html/wp-content/plugins/submitted-form/view.php on line 54
I want that page should get refreshed after submit button is clicked
 
     
    