Welcome Guest, Not a member yet? Register   Sign In
Explantion of {elapsed_time}
#8

[eluser]rogierb[/eluser]
hi,

Don't echo in your controller, only in a view files. If you echo in you controller, you output before the headers and html.

Code:
$guestbook .= "<h3>".$row->name.'</h3>';

$guestbook = '';
foreach($query->result() as $row)
{
    $guestbook .= "<h3>".$row->name.'</h3>';
}

return $guestbook;


Messages In This Thread
Explantion of {elapsed_time} - by El Forum - 10-26-2009, 03:32 AM
Explantion of {elapsed_time} - by El Forum - 10-26-2009, 04:10 AM
Explantion of {elapsed_time} - by El Forum - 10-26-2009, 04:14 AM
Explantion of {elapsed_time} - by El Forum - 10-26-2009, 04:18 AM
Explantion of {elapsed_time} - by El Forum - 10-26-2009, 04:21 AM
Explantion of {elapsed_time} - by El Forum - 10-26-2009, 04:26 AM
Explantion of {elapsed_time} - by El Forum - 10-26-2009, 04:46 AM
Explantion of {elapsed_time} - by El Forum - 10-26-2009, 04:53 AM
Explantion of {elapsed_time} - by El Forum - 10-26-2009, 04:57 AM



Theme © iAndrew 2016 - Forum software by © MyBB