Thread: form
View Single Post
  #6 (permalink)  
Old Apr 4th, 2007, 06:24
Ryan Fait's Avatar
Ryan Fait Ryan Fait is offline
SuperMember

SuperMember
Join Date: May 2006
Location: Las Vegas
Posts: 3,786
Thanks: 0
Thanked 0 Times in 0 Posts
Re: form

You have to place it before any content appears. For instance:

PHP: Select all

<?php
echo "Welcome to my site!";
header("Location: whatever.php");
?>
The above won't work. The header function must come before any HTML or content.
Reply With Quote