Hi,
What is the difference between the two?
Thanks.
Mike
header() sends an HTTP Header
include() takes the contents of another PHP file and executes them, ie: <?php // This is the equivalent of taking the code in 'anotherfile.php' and running it. include('anotherfile.php'); ?>
Thanks Keith.