Hi.
Is there anything as simple as this in php for page navigation???
Thanks
<head>
<title>Browser Buttons</title>
</head>
<body>
<form>
<input type="button" value="Back" onClick="location=history.go(-1)">
|
<input type="button" value="Forward" onClick="location=history.go(1)">
</form>
</body>
</head>