I have a php page for an application.
I need to have a "back" button or link to return to the html page that called the php page.
This is easily done in an html page returning to the calling html page by:
<a href="javascript:javascript:history.go(-1)">Previous Page</a>
I can insert this in my php page, but it does not appear to link to javascript and nothing happens when the link is activated.
So, two possible questions:
How to return to the html page which called the php page.
Maybe, just how to access javascript in php.
Any assistance would be appreciated.
Thanks.