Jump to content

A Problem Redirecting Outgoing Links


Beaumonde

Recommended Posts

<?php header("Location: ".$_GET['go']); ?> 

should work just fine.

 

 

 

 

 

 

 

Nope, I get this error then:

 

 

 

 

 

 

 

Warning: Cannot modify header information - headers already sent by (output started at /home/cosmic/public_html/gamrzone/hi.php:3) in /home/cosmic/public_html/gamrzone/hi.php on line 3

 

Link to comment
Share on other sites

 

<?php header("Location: ".$_GET['go']); ?> 

should work just fine.

 

 

 

 

 

 

 

Nope, I get this error then:

 

 

 

 

 

 

 

Warning: Cannot modify header information - headers already sent by (output started at /home/cosmic/public_html/gamrzone/hi.php:3) in /home/cosmic/public_html/gamrzone/hi.php on line 3

 

 

 

 

Don't include any of the other crap in there, that should be the only line in the file.

Link to comment
Share on other sites

 

<?php header("Location: ".$_GET['go']); ?> 

should work just fine.

 

 

 

 

 

 

 

Nope, I get this error then:

 

 

 

 

 

 

 

Warning: Cannot modify header information - headers already sent by (output started at /home/cosmic/public_html/gamrzone/hi.php:3) in /home/cosmic/public_html/gamrzone/hi.php on line 3

 

 

 

 

 

 

 

 

That means you're sending something to the browser before passing the header line. There's no need for anything else in the .php file at all other than the header line.

 

 

 

 

 

 

 

You will get this error if you try something like:

 

 

 

 

 

 

 

 

 

<?php header("Location: ".$_GET['go']); ?>

 

 

 

 

 

 

 

The ONLY thing in the file should be:

 

 

 

<?php header("Location: ".$_GET['go']); ?>

 

 

 

 

 

 

 

In the first example the browser gets sent

before it gets the header info, which isn't allowed.
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.