Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

meta refresh tag NOT WORKING in Netscape URGENT PLS

Options
  • 09-01-2003 2:40pm
    #1
    Closed Accounts Posts: 1,325 ✭✭✭


    hey ppl,

    the code hasnt changed since yesterday,
    but today the meta refresh tag isnt working under
    netscape.

    Yes it was being continually checked under netscape.

    Been looking at javascript redirections.
    Dont know anything bout javascript, and the code i got from a website doesnt appear to work either under netscape.

    Any ideas on why it stopped working??????
    I HAVE to redirect!!! any alternatives will be concidered.
    NEED HELP!!!!
    VERY VERY VERY URGENT!!!

    Thanks A.


Comments

  • Registered Users Posts: 12,309 ✭✭✭✭Bard


    Does it work in IE? Opera?

    What version of Netscape are you testing it in?

    Have you double checked the code?

    Are you able to use ASP or PHP on your site?


  • Closed Accounts Posts: 1,325 ✭✭✭b3t4


    Works in IE
    Works in Mozilla
    Used to work on Netscape vers4.79

    some pages havnt been changed in 2wks and they arent even working.

    the pages are written in php.

    A.


  • Registered Users Posts: 12,309 ✭✭✭✭Bard


    [php]
    <?
    function Redirect ($url) {
    Header ("HTTP 302 Redirect");
    Header ("Location: " . $url);
    exit;
    }
    ?>
    [/php]

    Use this function BEFORE any output from HTML or PHP, i.e. PHP code should go first without preceded spaces or tags.


Advertisement