Skip to content

Instantly share code, notes, and snippets.

@nasirkhan
Created March 26, 2016 08:05
Show Gist options
  • Save nasirkhan/b17be14735cc243364ce to your computer and use it in GitHub Desktop.
Save nasirkhan/b17be14735cc243364ce to your computer and use it in GitHub Desktop.
“Go Back” Button for the HTML/Javascript/PHP forms

“Go Back” Button

Input button with inline JavaScript

<input type="button" value="Go Back!" onclick="history.back(-1)" />

PHP solution for the Back Button

<?php
  $url = htmlspecialchars($_SERVER['HTTP_REFERER']);
  echo "<a href='$url'>back</a>"; 
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment