Skip to content

Instantly share code, notes, and snippets.

@myanmarlinks
Created July 4, 2017 04:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save myanmarlinks/fe9177a77bec400d0fb2b582abfcfa42 to your computer and use it in GitHub Desktop.
Save myanmarlinks/fe9177a77bec400d0fb2b582abfcfa42 to your computer and use it in GitHub Desktop.
Output Buffering Step 1
<?php
ob_start();
echo "Hello World <br>";
setcookie("test", 'testcookie');
echo "How are you my friend! <br>";
ob_end_flush();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment