--- Kris Yates <[EMAIL PROTECTED]> wrote:
> Currently, I am posting via GET to third party server as seen below:
> 
>     $item=urlencode($item);
>     header("Location: https://www.fake.com/fake.php?item=$item";);
> 
> I want to reconfigure my header calls to POST instead of using GET
> for sending $item to third party server. Is this doable?

No, you can't force a remote Web client to send a POST request. Maybe this is
possible with JavaScript, but I hope not.

Chris

=====
My Blog
     http://shiflett.org/
HTTP Developer's Handbook
     http://httphandbook.org/
RAMP Training Courses
     http://www.nyphp.org/ramp

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

Reply via email to