|
Hi!
I am really stuck on PHP problem...having never used it before my knowledge is extreemly limited - however its working ok with the exception of one field that i need to transfer to a piece of PHP script...
This is the user input field on the form
<input type="text" name="amount" value size="6" maxlength="50">
This is from the php script file.
$amount = echo("amount_input"); (need to get the amount entered on form to appear here)
So that it can be inserted as the variable here...
<input type=hidden name="AMOUNT" value="<?=$amount?>">
I hope this makes some sense..
I would appreciate any help as this has been driving me mad for ages and has become an urgent problem!
Thanks
Ka:-)
|