Re: [PHP] Sending a POST variable to an ASP page

2008-08-27 Thread Nathan Nobbe
heres a simple example shaun, $cH = curl_init('url to asp box'); curl_setopt_array( $cH, array( CURLOPT_POST => TRUE, * CURLOPT_POSTFIELDS* => array( 'yourParamName' => 'yourParamVal' ) )); $response = curl_exec($cH); personally though, i prefer the http extension

Re: [PHP] Sending a POST variable to an ASP page

2008-08-27 Thread Nathan Nobbe
On Wed, Aug 27, 2008 at 12:13 PM, tedd <[EMAIL PROTECTED]> wrote: > At 5:54 PM + 8/27/08, shaun thornburgh wrote: > >> Hi, >> >> I need to send a post variable to an ASP page, can I do this within my PHP >> script? >> >> I don't need to view the page, or get any acknowledgment back, just send

RE: [PHP] Sending a POST variable to an ASP page

2008-08-27 Thread shaun thornburgh
> Date: Wed, 27 Aug 2008 14:13:23 -0400> To: php-general@lists.php.net> From: > [EMAIL PROTECTED]> Subject: Re: [PHP] Sending a POST variable to an ASP page> > > At 5:54 PM + 8/27/08, shaun thornburgh wrote:> >Hi,> >> >I need to send >

Re: [PHP] Sending a POST variable to an ASP page

2008-08-27 Thread tedd
At 5:54 PM + 8/27/08, shaun thornburgh wrote: Hi, I need to send a post variable to an ASP page, can I do this within my PHP script? I don't need to view the page, or get any acknowledgment back, just send the single POST variable... The point is not IF php can send a POST (it can), bu