Questo il codice:
Mi dà questo tipo di errore:
Warning: Cannot modify header information - headers already sent by (output started at E:\Program Files\xampp\htdocs\revocarev.php:36) in E:\Program Files\xampp\htdocs\revocarev.php on line 66.
come è possibile se ho messo le due funzioni prima e dopo l'header??
Qual è l'errore?
PHP:
ob_start();
echo '<script langage=\"Javascript\">alert("Le password non coincidono, fare attenzione nella scrittura!");</script>';
header( "Refresh:1; url=assistenza.php" );
ob_end_flush();
Mi dà questo tipo di errore:
Warning: Cannot modify header information - headers already sent by (output started at E:\Program Files\xampp\htdocs\revocarev.php:36) in E:\Program Files\xampp\htdocs\revocarev.php on line 66.
come è possibile se ho messo le due funzioni prima e dopo l'header??
Qual è l'errore?