Gossamer Forum
Home : Products : DBMan SQL : Discussion :

Re: [Reena0330] timestamp new text

Quote Reply
Re: [Reena0330] timestamp new text In reply to
I'm not sure how you'd accomplish that with perl, but I've had success concatenating form fields with javascript. You just write a short function with something like the following:

Code:


function concat_submit() {
document.formname.fullfieldname.value = (document.formname.fieldonename.value + document.formname.fieldtwoname.value);
document.formname.submit();

}


Then your submit button becomes:

<input type="button" name="submit" onclick="javascript:concat_submit();">

I think something like that should work, although my javascripting isn't always too hot...

Fractured Atlas :: Liberate the Artist
Services: Healthcare, Fiscal Sponsorship, Marketing, Education, The Emerging Artists Fund
Subject Author Views Date
Thread timestamp new text Reena0330 3476 Sep 2, 2002, 2:34 PM
Thread Re: [Reena0330] timestamp new text
Reena0330 3368 Sep 3, 2002, 12:44 PM
Post Re: [Reena0330] timestamp new text
hennagaijin 3313 Sep 30, 2002, 3:31 PM