View Single Post
  #1 (permalink)  
Old 10-20-07, 01:55 PM
miniature miniature is offline
Newbie Coder
 
Join Date: Feb 2006
Posts: 75
Thanks: 0
Thanked 0 Times in 0 Posts
"true get" function...

PHP Code:



function true_get($true_arrays) {
  
$allowed_get_keys = array($true_arrays); 
  if((
is_array($_GET)) && (!empty($_GET))) { 
    foreach(
$_GET as $key=>$val) { 
      if(!
in_array($key,$allowed_get_keys)) {
        
header("Location:" $_SERVER['PHP_SELF']);
      }
    } 
  }
}

true_get("a","b"); 
It works only for the first parameter..

Thanks,
Reply With Quote