Hello,
What I'm trying to do is the following:
If I visit team.php from index.php and when I click "back page" it takes me to index.php
If I visit team.php from home.php and when I click "back page" it takes me to home.php
Is there a way to do this?
selective redirect
Moderator: General Moderators
Re: selective redirect
Isn't it already working like this?
Re: selective redirect
I have no idea how to do this :s
Re: selective redirect
Code: Select all
<form>
<input type="button" value="back page"
onClick="javascript: history.go(-1)">
</form>