--- bob pilly <[EMAIL PROTECTED]> wrote:
> Is there any security issues with passing data via the
> POST method from a webserver to a different webserver
> running ssl.

There are always security concerns, regardless of your approach. Nothing is
perfect. However, sending data over an SSL connection offers a very high level
of security.

> For example:
> 
> webserver1
> 
> <form name='form1' method='POST'
> action='https://webserver2/login.php'>
> <input type='hidden' value='lalala' name='data'>
> </form>
> and then just using <?$data=$_POST[data];?> on
> webserver 2 to retrieve the data?

I'm not sure if it is relevant to your task, but you might like to know that
the client, not the Web server, is who sends the POST request to "webserver2".

Hope that helps.

Chris

=====
Become a better Web developer with the HTTP Developer's Handbook
http://httphandbook.org/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to