<?

//=============================//
//                             //
//   secure VARS               //
//   secure.php                //
//   by Razvan Stanga          //
//   razvan_stanga@yahoo.com   //
//   http://www.phprebel.org   //
//                             //
//       MADE IN ROMANIA       //
//                             //
//=============================//

include ("secure.VARS.php");

$_VARS = array ();

secureVARS $_GET,
        array (
            
'a' => 'INT',         // integer
            
'b' => 'STR',         // trim string
            
'c' => 'STRNOHTML'// trim string, no html allowed
            
'd' => 'STRUCW',     // trim string, upper case words
            
'e' => 'STRUCF',     // trim string, upper case first word
            
'f' => 'STRTOL',     // trim string, lower case words
            
'g' => 'STRURLE',     // trim string, url encoded
            
'h' => 'STRURLD',     // trim string, url decoded
            
'i'                 // no processing
            
)
);

print_r get_defined_vars () );

?>