Código PHP:
<?php
ob_start();
/// REVISA SI ESTA REGISTRADO EL USUARIO, SI NO LO ESTA LO MANDA A LA PAGINA DE LOGIN
if ( isset( $y ) && ( $y != '' ) ) { $x = '0' ; }
if ( !isset($_SESSION['super_id'])) {
header("Location:superadmin.php");
exit();
}
?>
Cita:
El script, no posee ningun espacio ni otro caracter antes del tag de apertura de php. Probe utilizando ob_start() / ob_end_flush() al principio y final, pero sigue dando el error.Warning: Cannot modify header information - headers already sent by (output started at /*/superadmin2.php:3) in /*/superadmin2.php on line 46
Alguien tiene alguna idea?
Gracias
Diego