After the record deletion i have send header to previous page but it's not happen how could i solved it..
record is already deleted but it still show in that page after pressing ctrl + f5 when page is reload from server at that time the effect of deletion is show.
<?php
     include('../config.php');
    $table=$_REQUEST['table'];
    mysql_query("DELETE FROM ".$table." WHERE id=".$id);
    $_SESSION['message']="Deleted Successfully....";
    header('Location: ' . $_SERVER['HTTP_REFERER']);
?>
also in all the pages happening same thing adter edit add and all the data base action is showing effect after ctrl+f5 press...
 
     
     
    