When he redirects to google, in the statusbar appears www.google.com.
Is it possible to have my own page in the statusbar, i mean that it not change when he redirects?

<?
header("Location: 'http://www.google.com");
?>

Thanks by regards.

    i mean 'address bar' for 'statusbar'.

    sorry

      Do you mean the status bar or the address bar?
      If it's the address, what you want to do is 'url masking'. The easiest way is to open the redirect page inside a 'single-framed' page:

      <HTML>
      <HEAD>
      <TITLE>Page Title</TITLE>
      </HEAD>
      <FRAMESET ROWS="100%,*" FRAMESPACING=0 FRAMEBORDER=0 BORDER=0>
      <FRAME SRC="http://www.google.com" SCROLLING="AUTO" NORESIZE FRAMEBORDER=0 BORDER=0>
      

      If its the status bar, then you need to use javascript to set the status bar to 'whatever you want' when the user moves their mouse over a link.

        i have do it in php. Is this good? What i wrong?

        <?
        echo "<HTML>
        <HEAD>
        <TITLE>Page Title</TITLE>
        </HEAD>
        <FRAMESET ROWS="100%,*" FRAMESPACING=0 FRAMEBORDER=0 BORDER=0>
        <FRAME SRC="
        "$redirecturl"
        echo" SCROLLING="AUTO" NORESIZE FRAMEBORDER=0 BORDER=0>"

        ?>

          It's easier to leave the HTML code alone and just insert the php variable where you need it:

          <? php stuff in here ?>
          <HTML>
          <HEAD>
          <TITLE>Page Title</TITLE>
          </HEAD>
          <FRAMESET ROWS="100%,*" FRAMESPACING=0 FRAMEBORDER=0 BORDER=0>
          <FRAME SRC="<? echo $redirecturl; ?>" SCROLLING="AUTO" NORESIZE>
          <? more php stuff here ?>
          

            thank you very much. It works.

            Another question: if i want to send a $variable also to the page $redirecturl . How can i do that.

            for example:
            $redirecturl = www.homepage.com/main.php
            how can i get the $variable in that page?

              $redirecturl = "http://www.homepage.com/main.php?var=$variable";

              Cgraz

                thanks. but it does not work

                if i have in main.php the following source:

                <?
                echo $variable;
                ?>

                it does not work, no errors, but also no text. How can ik echo the $variable ?

                Thanks.

                  You need to pass the variable in the link to the html page you want to display in the table cell:

                  <a href="page.php?redirecturl=http://www.domain.com">link</a>
                    Write a Reply...