Re: Checking browser history
Can be done with javascript
Code:
//back
history.back();
//forward
history.forward();
//or to specify how many pages forward
history.go(-1);
history.go(1);
Not to sure about how to detect if they can. Maybe someone in the XML, HTML, Javascript, Web and CGI forum might have more of an idea
Re: Checking browser history
thats why I posted here, I figured PHP would be able to do more with this than could be done with javascript or something.
Re: Checking browser history
Well you could store every page that the user has viewed, and then allow the user to step back to any page they have visited on your site, possibly from previous visits. But im not sure how this would work with going forward.