Jump to content

Redirect- Header.Location


ghosh

Recommended Posts

Hello,

 

Can any one suggest me how do I redirect from one page to another in PHP? I am novice, so keep it simple please.

for example

  if(a>b)
      {
           header.Location("http://a.html");
       }
  else
       {
            header.Location("http://b.html");
        }

 

Is this right code? ???

Link to comment
https://forums.phpfreaks.com/topic/65342-redirect-headerlocation/
Share on other sites

Hello,

 

Can any one suggest me how do I redirect from one page to another in PHP? I am novice, so keep it simple please.

for example

  if(a>b)
      {
           header.Location("http://a.html");
       }
  else
       {
            header.Location("http://b.html");
        }

 

Is this right code? ???

 

I use, for example:

 

header("Location: http://a.html");

 

.. and it works fine.

when I am typing this code

<?php
header("Location: http://www.myplanet.co.in/home/home.html");
?>

 

I am getting this error:

 

Warning: Cannot modify header information - headers already sent by (output started at /home/myplanet/public_html/index.php:1) in /home/myplanet/public_html/index.php on line 2

 

can you please suggest what could be the error?

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.