Re: [PHP] Automajickally POST to a remote form

2002-11-26 Thread Kris Williams
You can post with PHP using cURL or doing it yourself manually. Search the archives for this, as the previous answers to this are more complete than what I have time to explain now. Here is a quick example of the manual approach: http://shiflett.org/tutorials/php_post.txt Thanks Chris. A

RE: [PHP] Automajickally POST to a remote form

2002-11-25 Thread John W. Holmes
Once upon a time I used to be able to POST form data to external sites with ASP and an MSXML (or something) server object on IIS and I'm wondering if there's a similar sort of technique using PHP. Would prefer it if I didn't have to use anything that isn't part of your typical PHP/Apache

Re: [PHP] Automajickally POST to a remote form

2002-11-25 Thread Chris Shiflett
--- Kris Williams [EMAIL PROTECTED] wrote: Once upon a time I used to be able to POST form data to external sites with ASP and an MSXML (or something) server object on IIS and I'm wondering if there's a similar sort of technique using PHP. You can post with PHP using cURL or doing it