[PHP] Posting form variables with http authentication

2001-06-21 Thread Gerard Onorato
Hi everyone, This question is almost certainly an RTFM but I can't find it so I am going to ask anyway. I have a form on my ssl which I need to submit to a perl handler on another server. Problem is the company on the other side is requiring a http authentication to submit the form. I can't

Re: [PHP] Posting form variables with http authentication

2001-06-21 Thread lenar
I think there is no very simple way to do this. But you can try to receive the form yourself and using for example curl extension, make connection to that another server, then resubmitting your form data along with necessary authentication headers. That should work. lenar. Gerard Onorato

RE: [PHP] Posting form variables with http authentication

2001-06-21 Thread Jason Murray
I have a form on my ssl which I need to submit to a perl handler on another server. Problem is the company on the other side is requiring a http authentication to submit the form. HTTP authentication can be worked with a URL: http://username:[EMAIL PROTECTED]/cgi-bin/perlhandler Jason --

Re: [PHP] Posting form variables with http authentication

2001-06-21 Thread Rasmus Lerdorf
This question is almost certainly an RTFM but I can't find it so I am going to ask anyway. I have a form on my ssl which I need to submit to a perl handler on another server. Problem is the company on the other side is requiring a http authentication to submit the form. I can't think of