CloudSex13 Posted December 5, 2008 Share Posted December 5, 2008 is there a reason why the header("location: index.php"); doesn't work in php functions? ex. function omg() { echo "money money."; header("location: index.php"); } thank you for any help if so! :] Quote Link to comment https://forums.phpfreaks.com/topic/135695-reload-page-in-a-php-function/ Share on other sites More sharing options...
mrMarcus Posted December 5, 2008 Share Posted December 5, 2008 a couple posts above you is a topic with lot's o' information on headers...for headers to work, there cannot be anything parsed to the browser before they are executed.. for example, function omg() { echo "money money."; header("location: index.php"); } echo'ing money money is causing the header to fail. look into output buffering when getting involved with headers and such .. will save you many headaches. as well, always have error_reporting(E_ALL); at the top of all your scripts when in development mode. gives you a breakdown of any/all errors that occurred. Quote Link to comment https://forums.phpfreaks.com/topic/135695-reload-page-in-a-php-function/#findComment-706997 Share on other sites More sharing options...
gevans Posted December 5, 2008 Share Posted December 5, 2008 You can't put any content out to a browser before sending a header; function omg() { echo "money money."; header("location: index.php"); } will never work due to the line echo "money money."; function omg() { //echo "money money."; header("location: index.php"); } that will work Quote Link to comment https://forums.phpfreaks.com/topic/135695-reload-page-in-a-php-function/#findComment-707000 Share on other sites More sharing options...
CloudSex13 Posted December 5, 2008 Author Share Posted December 5, 2008 ahhhh. is there another way to do this with data output in a function without having to click another link? Quote Link to comment https://forums.phpfreaks.com/topic/135695-reload-page-in-a-php-function/#findComment-707018 Share on other sites More sharing options...
mrMarcus Posted December 5, 2008 Share Posted December 5, 2008 why don't you explain what it is exactly that you are trying to do...do you need to redirect or do you just need to return a value? Quote Link to comment https://forums.phpfreaks.com/topic/135695-reload-page-in-a-php-function/#findComment-707023 Share on other sites More sharing options...
keyurshah Posted December 6, 2008 Share Posted December 6, 2008 is there another way to do this with data output in a function without having to click another link? The 'headers' redirection wuz also troubling me. What I did wuz simply wrote a small function: function redirect($loc){ echo "<script>window.location.href='".$loc."'</script>"; } and then function GoHere(){ /* Do something here... */ redirect('index.php'); } and it worked! Hope this helps. Quote Link to comment https://forums.phpfreaks.com/topic/135695-reload-page-in-a-php-function/#findComment-707515 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.