hi please help!
i have a form with various fields and some of them are not optional. after pushing submit (submit_f_charter_hr) button form should go through check.php page to validate some fields. this is check.php page:
<?php
error_reporting(1);
if($submit_f_charter_hr!=''){
if (!empty($_POST['model_jahte']) || !empty($_POST['br_kabina']) || !empty($_POST['br_kreveta'])
|| !empty($_POST['br_putnika']) || !empty($_POST['skiper']) || !empty($_POST['mjesto_polaska'])
|| !empty($_POST['datum_polaska']) || !empty($_POST['trajanje']))
printf("<META HTTP-EQUIV='refresh' content='2;URL=osobni_hr.html'>");
else
printf("<META HTTP-EQUIV='refresh' content='2;URL=nepotpuna_hr.html'>");
}
?>
i dont know what is the error because server doesnt tell me nothing... it just stops on check.php page and thats it... theres no redirecting...
am i too sleppy or just blind we will see...