desithugg Posted July 20, 2006 Share Posted July 20, 2006 okay im using php to redirect pages[code]<?phpheader("Location: index.php?action=1");?>[/code]but that doesnt work ive tried almost everything i've tried puttng the full url removing the get variable..but it still doesnt work.it's very odd because the redirect function works in some script while it doesnt work in oter it works perfect in my login script.and also here it works.[code]<?php $location = "http://tpfrpg.byethost32.com/pic/$user1.png"; ?><?phpheader("Location: {$location}");?>[/code] i tried doing the same thing but it still doesnt work its quite odd.im not sure what to do.I really need a fast method to redirect and this is the fastest i know.Js/Meta tags slow the process down too much and the users will get frustrated Link to comment https://forums.phpfreaks.com/topic/15167-php-redirect/ Share on other sites More sharing options...
micah1701 Posted July 20, 2006 Share Posted July 20, 2006 the code snippet you posted looks fine... what error message are you receiving. it could be an output buffer issue.whats the error you receive? Link to comment https://forums.phpfreaks.com/topic/15167-php-redirect/#findComment-61109 Share on other sites More sharing options...
treilad Posted July 20, 2006 Share Posted July 20, 2006 What error are you getting? Link to comment https://forums.phpfreaks.com/topic/15167-php-redirect/#findComment-61110 Share on other sites More sharing options...
desithugg Posted July 20, 2006 Author Share Posted July 20, 2006 im not recieving any errors.It does everything in the script echo what i want but after that when the redirect part comes in it just stops Link to comment https://forums.phpfreaks.com/topic/15167-php-redirect/#findComment-61113 Share on other sites More sharing options...
trq Posted July 20, 2006 Share Posted July 20, 2006 You cant echo anything before redirecting without using output buffering, and I suggest turning error_reporting on to show you such problems.There is a sticky thread around here somewhere about [i]header problems[/i] I suggest you read it. Link to comment https://forums.phpfreaks.com/topic/15167-php-redirect/#findComment-61114 Share on other sites More sharing options...
wildteen88 Posted July 20, 2006 Share Posted July 20, 2006 You cannot output anything to the browser before the use of header.EDIT: Thorpe, beat me :(FYI there is an [url=http://www.phpfreaks.com/forums/index.php/topic,95562.0.html]FAQ[/url] on this too. Link to comment https://forums.phpfreaks.com/topic/15167-php-redirect/#findComment-61115 Share on other sites More sharing options...
desithugg Posted July 20, 2006 Author Share Posted July 20, 2006 o i have found the probleam i was using an include file layout which output stuff to the browser.Thanks for you're help. Link to comment https://forums.phpfreaks.com/topic/15167-php-redirect/#findComment-61117 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.