Hi
I have a form page (form.php) which calls a seperate PHP page to insert a new record (insert.php). Insert.php then redirects to a listing page (list.php) using
header('Location: list.php?z='.$access);
($access is the user id and priveledge level and is passed through all pages as our company does not allow cookies or session variables)
My problem is that if the user clicks refresh on list.php the script from insert.php is rerun because the URL is still showing insert.php with the $Get arrays. This results in a second identical record being inserted.
How can I prevent this problem?
Any help would be appreciated