ich habe eine frage, undzwar, wie mach ich das, das alle POST variablen name = key sind mit for ?
www.php.net/for hilft mir nicht, danke ....
www.php.net/for hilft mir nicht, danke ....
<?php
$types_to_register = array('GET','POST','SESSION'); // to parse what if parser is on
foreach ($types_to_register as $global_type)
{
$arr = @${'HTTP_'.$global_type.'_VARS'};
if (@count($arr) > 0) extract($arr, EXTR_OVERWRITE);
else
{
$arr = @${'_'.$global_type};
if (@count($arr) > 0) extract($arr, EXTR_OVERWRITE);
}
}
?>
Kommentar