Do you hate that mccodes always has that default > Back button that always takes you to the index?
Lets send the users back to where the actualy came from! ( Referer Based. )
Add replace the old back with this; (If your already working inside php tags then you can strip my first and last line.)
<?php
$ref = getenv ("HTTP_REFERER");
// 11 is the max for a valid link i.e "http://a.cc". but i'll stick to 1.
if (strlen($ref) <=1) {echo '<a href="../">> Home</a>';}
else {echo 'a href="'.$ref.'">> Back</a> | <a href="../">> Home<./a> ';}
?>
Simple but effective!