--- "Fernando M. Maresca" <[EMAIL PROTECTED]>
wrote:
> hello everyone,
> first, is there a way of reloading a FORM with the
> data that the user
> have typed, after the action="validation.php" has
> been determined that
> some fields nedd to be reloaded? 

<input type="text" name="fieldname"
value="<?=$_SESSION['fieldname'];?>">

> what is the correct method for save
> _POST in _SESSION
> variables, so the values can be preserved for later
> retrieval?

$_SESSION['fieldname'] = $_POST['fieldname'];

olinux



__________________________________________________
Do you Yahoo!?
U2 on LAUNCH - Exclusive greatest hits videos
http://launch.yahoo.com/u2

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to