Hi,

I'm new at PHP and I'm having to learn it through the crash course method. I'm having difficulties with redirecting to another page.

I've read that you have to use the
PHP Code:
header('Location:http://website/page'); 
But everytime I do I get this error message
Warning: Cannot modfy header information - headers already sent by (output started at c:\Inetpub\wwwroot\test1.php:2) in c:\Inetpub\wwwroot\test1.php on line 4
I read about this error and it seems that therer are a dozen PHP codes and HTML tags that you cannot have before the header function. This seems awefully restrictive. Is there another better way to redirect?