Hi,
I'm trying to come up with a solution to avoid the "retry" popup when a page that has "POSTed" form variables is refreshed. My solution involves using an intermediate page (show below):
<?php
session_start();
$SESSION=array_merge($SESSION,$_POST);
header("Location: /mgmt/SearchCatalog_action.php");
exit;
?>
So after putting the form variables into $_SESSION scope, this page redirects to the search results page. That page has "edit" and "delete" links for each result (this is a management interface). Those open popup windows to edit or delete that item (ie, using javascript window.open() ). At the end of editing or deleting an item, I use window.opener.location.reload (and window.close() to close the popup), to reload the main page to reflect the changes. The problem is that the page that shows the results still has the URL of the "intermediate" page, and that's the page that gets executed again and thus the "retry" popup problem still exists since that page has values that were POSTed to it.
Thank you in advance for any thoughts or suggestions.
Jeff