Posts: 481
Location: Gold Coast - Brisbane QLD, Australia
|
In all the form values, give each the corresponding POST values. For eg, for a form element named "username", give the element a value="<?php if(isset($_POST['username'])){ echo $_POST['username']; } ?>"
Also at the top of the page, include:
header("Cache-control: private");
This will help stop IE from clearing the cache. Be aware of javascript validation for forms that do database insert queries. In some cases the header is sent twice which results in a double insert; a very, very annoying bug which happens with all browsers.
Last edited by metho; 05-22-2005 at 08:34 PM..
|