jd2007 Posted July 20, 2007 Share Posted July 20, 2007 How to return to the previous page in php? Link to comment https://forums.phpfreaks.com/topic/60943-how-to-return-to-the-previous-page-in-php/ Share on other sites More sharing options...
dooper3 Posted July 20, 2007 Share Posted July 20, 2007 personally, i'd use javascript... <a href="javascript:history.go(-1)" title="go back" /> //similarly to go forward a page: <a href="javascript:history.go(1)" title="go forward" /> //and to do it with a button: <input type="button" value="back" onclick="history.go(-1)" /> Hope that helps Link to comment https://forums.phpfreaks.com/topic/60943-how-to-return-to-the-previous-page-in-php/#findComment-303223 Share on other sites More sharing options...
DeadEvil Posted July 20, 2007 Share Posted July 20, 2007 embed this code in your action page.... thats it.. header('location: previouspage.php'); Link to comment https://forums.phpfreaks.com/topic/60943-how-to-return-to-the-previous-page-in-php/#findComment-303247 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.