I found this code:
<?
function DisplayError($ErrorMessage) {
?>
<br><br><br>
<table class="InfoTable" width="400">
<caption>Error</caption>
<tr><td><p class="ErrorMessage"><?=$ErrorMessage?></p></td></tr>
<tr><td><input type="button" value="Back" onclick="history.back()"></td></tr>
</table>
<?
}
// End DisplayError()
When I try to run it on my site it does not work. It seems straight forward and works on the site it is located. The form window stays open and a window pops up. Click the back button and you are back at the form...very handy.