Hi friends
I am using mete tage to redirect the page in my php script.but the latest version firefox only not support the meta tag page redirect option -- unable pass the query string values. but older version its working correctly.

How can i fix the issue . Please advice
__________________

Recommended Answers

All 4 Replies

Hi,

another approach is to use JavaScript.
<script>
window.location="http://domain.com";
</script>

Thanks lordspace

My I ask why you just don't use PHP for the redirect? It works in every browser every time and doesn't require JavaScript be turned on like the solution above.

<?php
    header("Location: http://www.domain.com");
?>

Thank you sooooo much

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.