Ver Mensaje Individual
  #1 (permalink)  
Antiguo 10/09/2015, 17:12
ttipsx
 
Fecha de Ingreso: septiembre-2015
Mensajes: 1
Antigüedad: 8 años, 7 meses
Puntos: 0
Problemas con la instrucción header

Tengo problemas con la siguiente instruccion:

Código PHP:
Ver original
  1. <?php
  2. require_once("clases.php");
  3. $sesion = new Sesion();
  4. if($sesion->estadoLogin()){
  5. header("location:inicio.php");
  6. } else {
  7. header("location: http://sitio.com/login.php");
  8. }
  9. ?>

Me manda el siguiente error:
Warning: Cannot modify header information - headers already sent by (output started at /home3/ttipsx/public_html/indexalbum.php:1) in /home3/ttipsx/public_html/indexalbum.php on line 9

Última edición por Triby; 10/09/2015 a las 17:48 Razón: Código en highlight