in reply to display data on an existing third party form

Use of WWW:Mechanize, suggested above is certainly good advice but take heed of cbrandtbuffalo's note. Many, many webmasters try to offload some of the cost (server cpu cycles, bandwidth when a required field is not filled in, etc) of the form validation (or even untainting, which is spectacularly UNwise) onto the client, via javascript. So you need to be prepared for problems.

And forgive me if this is excess-suspicion, but your words

"..to populate an existing form of a third party vendor"
may not mean what I fear they might, but if you're talking about using that vendor's bandwidth, etc, for your own purposes, you're talking "rude," to saying nothing of "actionable!"

In fact, in the US in this post 9/11 era, that might even be criminal.

  • Comment on Re: display data on an existing third party form

Replies are listed 'Best First'.
Re^2: display data on an existing third party form
by junky123 (Acolyte) on Feb 25, 2005 at 22:39 UTC
    I have a vendor whose form I need to fill with data from another database that I have. The third party application has been licensed to me and it exists on my network. I need to fill this once every week so instead of getting the data and filling it manually, I wanted to automate the process. Instead of asking vendor's developers, I wanted to do it so it is useful to everyone in my group.