Hi there
I have an input box in a form (very simplified example below so we're
all on the same page).
<form method='post' action='http://www.theaddress. com/target.tcl'>
<input type='text' name='tb1' value=''>Search text
<input type='submit' name='action' value='Generate '>
</form>
When the user submits. I want to concatenate characters to the input
that the user typed in. Without the user knowing.
So if the user types "string", I want the form to submit "%string".
TIA
Simon
I have an input box in a form (very simplified example below so we're
all on the same page).
<form method='post' action='http://www.theaddress. com/target.tcl'>
<input type='text' name='tb1' value=''>Search text
<input type='submit' name='action' value='Generate '>
</form>
When the user submits. I want to concatenate characters to the input
that the user typed in. Without the user knowing.
So if the user types "string", I want the form to submit "%string".
TIA
Simon
Comment