Welcome Guest, Not a member yet? Register   Sign In
Help! Message: Cannot modify header information - headers already sent by
#1

[eluser]josepichu[/eluser]
A PHP Error was encountered

Severity: Warning

Message: Cannot modify header information - headers already sent by (output started at /home/ebconsul/public_html/guaguas/application/models/estados_model.php:1)

Filename: helpers/url_helper.php

Line Number: 546

...


my estados_model.php file is this:

Code:
<?php

class Estados_model extends CI_Model {

function __construct() {

  parent::__construct();


}

function guardar_cambio_estado($e_fuente, $e_destino, $idincidencia) {

  $ip = $_SERVER['REMOTE_ADDR'];
  //$ip = $this->input->ip_address();

  $sql = "insert into historial_cambios_estados set idincidencia='".$idincidencia."', estado_fuente='".$e_fuente."', ";
  $sql .= "estado_destino='".$e_destino."', fecha_cambio_estado='".date("Y-m-d H:i:s")."', ";
  $sql .= "usuario='".$this->session->userdata('usuario')."', ip='".$ip."'";
  
  mysql_query($sql);
  
  return 0;  
  
}

}

?>

It hasn't space before the <?php...


Messages In This Thread
Help! Message: Cannot modify header information - headers already sent by - by El Forum - 06-05-2012, 11:44 AM



Theme © iAndrew 2016 - Forum software by © MyBB