> I'm sending credit card info to a 3rd party credit card processing site.
>   I would like to keep the inputted values and, after the approval, have
> them appear in the value part of the form so that they don't have to
> re-input the same values they had just put in for the credit card.  how
> can i do this?

So put the value in the "value" attribute of your text box.

<input type="text" name="cc_number" value="<?=$_POST['cc_number']?>">

substitute $_POST['cc_number'] with whatever you send to the processing
site.

---John Holmes...


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

Reply via email to