Jump to content

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?

 

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.