0 utilizadores on-line |
0 Convidados e 0 Registados

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent ...


This error usually occurs when "session_start ()" is below any data output to the browser, it can be html tags or syntax errors in code snippets that precede the function. Example:

Correct form:

<? Php

Session_start ();
Echo "Site Content!";

?>

Incorrect form:

<? Php

Echo "Website Content!";
Session_start ();

?>

For more details visit:
http://www.php.net/manual/en/function.session-start.php

2017-03-22 16:03 MFORMULA {writeRevision}
Avaliação média: 0 (0 Avaliações)

Não pode comentar este artigo

Chuck Norris has counted to infinity. Twice.

{debugMessages}