<!DOCTYPE html>
<html>
<body>
<?php
ob_start();
echo "This content will not be sent to the browser.";
ob_end_clean();
echo "This content will be sent to the browser.";
?>
</body>
</html>