Topic awaiting preservation: Two different forms...same fields... (Page 1 of 1) |
|
---|---|
Paranoid (IV) Inmate From: Deeetroit, MI. USA |
posted 11-16-2002 20:36
I have a scenario where I'd like to be able to have one window (or frame) with a form...and another (not ours, so there is really no editing this one) that I could possibly have the information being inputted into the fields on [ours] go into the fields on [there's] as well at the same time. Thus both forms will have the same information inputted, it will be inputted [once], and the information will go to each respective database. Is there some kind of a target script that can be used here. I know this is not a good user experience, but it is going to help. |
Paranoid (IV) Inmate From: New Jersey, USA |
posted 11-17-2002 02:31
I would think (but I'm not positive) that if the windows are named, you could use Javascript to make a form box on one page equal to the text in a form box on the other. |
Bipolar (III) Inmate From: London, UK |
posted 11-18-2002 16:53
You could bounce the result of your action script to the other page's action script once you're done, forwarding all the variables on as you go. Unfortunately this means that you lose control of the script, as the user ends up at the other site. code: <html>
|
Paranoid (IV) Inmate From: Deeetroit, MI. USA |
posted 11-19-2002 04:19
Thanks for the ideas! I will play around with this...I know this is not a good idea, but the org that I am doing this for MUST submit the info into [their] form, but they want to be able to record the info they input. Basically, we want a carbon copy for [our] records. |
Bipolar (III) Inmate From: London, UK |
posted 11-20-2002 17:02
Oh, and you could use perl, build up a post request within the script, fire it off from your server to theirs, and then update your own db. No frames, no javascript, the user won't see it, and it only requires one script to do both actions. |