nico_arndt
Mitglied
Kann mir hier vielleicht helfen? die $_POST übergabe funktioniert leider nicht ich weiß mir jetzt auch nicht mehr weiter
hier der Code
hier der Code
PHP:
## Formularüberprüfung
class control {
function form($form_action)
{
global $_POST;
global $form_action;
$i=0;
while($i < count($form_action)){
if($_POST[$form_action[$i]] == ""){
echo "fehler<br>";
}
$i++;
}
}
};
####################################
## Konstruktor für die Formularüberprüfung
####################################
$control = new control;
####################################
## Fomular (nach abschicken)
####################################
if(isset($nick)){
## Array für Pflichtfelder
$form_action = array( 'nick',
'email',
'pass',
'pass2');
$control->form($form_action);
}