Simple question:
If I enable output buffering...
ob_start();
$a = true;
header('Location: page.php');
$a = false;
ob_end_flush();
... will $a be registered as false, or will it just redirect the page without processing the command (as it would if output buffering were not enabled)?
Thanks!