--- Damon Hill <[EMAIL PROTECTED]> wrote:
> I am not privy to how to create the POST or GET response without a
> FORM.

GET is easy, because you can just use fopen to open a remote URL just as
if it were a local file, so long as this is set in your php.ini:

allow_url_fopen = On

As for POST, there are a number of options. You can use cURL, any of the
PEAR classes that allow you to make HTTP requests, or you can do it
manually:

http://shiflett.org/hacks/php/http_post

Hope that helps.

Chris

=====
Chris Shiflett - http://shiflett.org/

PHP Security Handbook
     Coming mid-2004
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