in reply to Send user to a different server

Use the secure server to collect sensitive information, e.g. credit card details.

This is how Worldpay operates. Your form submits fields to a script on there server which, after processing the cc details, calls a callback script on your server with all the fields on the original form passed back.

If the secure server doesn't always need to be called/used this could be handled by jscript in the original form.

There are other ways to do this but the first point above is, I believe, the key.

Replies are listed 'Best First'.
Re^2: Send user to a different server
by Michalis (Pilgrim) on Jul 30, 2004 at 07:52 UTC
    Well, obviously I want to send the user to the secure web server in order to collect sensitive information (e.g. credit card details). The problem is not "when to use secure server", it's rather "how to redirect to a secure server with a simultaneous form post".
    Thanks though for the answer
    -- Michalis