PHP5 Programy Pozycjonowanie Stron nieruchomości gry Pozycjonowanie tanio http://www.server.isshe.eu/haslo-osteoporozy.html http://www.server.isshe.eu/haslo-osteoporozy.html
Joomla # pozycjonowanie stron # hacking # kup karte graficzną lub płytę główna na sklep komputerowy intel core # tworzenie stron kraków tworzenie stron kraków tworzenie stron kraków
Output Control
PHP Manual

Przykłady

Przykłady

Example #1 Output Control example

<?php

ob_start
();
echo 
"Hello\n";

setcookie("cookiename""cookiedata");

ob_end_flush();

?>

In the above example, the output from echo() would be stored in the output buffer until ob_end_flush() was called. In the mean time, the call to setcookie() successfully stored a cookie without causing an error. (You can not normally send headers to the browser after data has already been sent.)


Output Control
PHP Manual