01-11-2008, 02:43 AM
|
#6 (permalink)
|
|
La Vida es Sueño
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
|
I think I understand you. The best way is to forward the user back to another page using the header function. Therefore if they tried to refresh, they POST data has gone and so it will not be re-posted.
php Code:
header('location: anotherPage.php') /* FQDN, ideally */exit; /* Always exit */
For this reason: why you should exit after header.
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
|
|
|