Simulating the Back button of the browser

A

Anonymous

Guest
-----------------------------------

How can I simulate the Back button of the browser with a link in the php script?

-----------------------------------
 
http://www.google.ca/search?q=php+back+button&ie=UTF-8&oe=UTF-8&hl=en&meta=
 
try giving a link like this
Code:
<a href="<?php echo($_SERVER['HTTP_REFERER'])?>">back</a>
 
-------------------------------

Great!

Thank you!

-------------------------------
 
Back
Top