I've noticed people using exit; with the header() function. And others don't.
For example:
<? header("Location: http://www.somewhere.com"); exit; ?>
Does anyone know why? I've tried understanding what people are explaining at http://us2.php.net/exit but I'm getting confused.
Is it best practice to use exit; when redirecting?