01-08-2008, 06:41 PM
|
#11 (permalink)
|
|
The Addict
Join Date: Jan 2008
Location: USA
Posts: 217
Thanks: 16
|
Quote:
Originally Posted by Gareth
Would there be an easy way to carry over the $_POST values?
|
Yup.  For each input use something like:
PHP Code:
echo '<input type="text" value="'.(isset($_POST['name']) ? mySafetyFunc($_POST['name']) : '').'" />';
Quote:
Originally Posted by Gareth
Thanks again :)
|
No problem, glad to help! If you'd like me to take another look again some time, just send a PM my way.
__________________
Programmers are in a race with the Universe to create bigger and better idiot-proof programs, while the Universe is trying to create bigger and better idiots. So far the Universe is winning. - Rich Cook
|
|
|
|