|
Posted by Rik on 12/14/06 07:05
Andy Hassall wrote:
> On 13 Dec 2006 10:44:06 -0800, "devranger" <knee-dragger@hotmail.com>
> wrote:
>
>>
$data="MasterTemplate:_PageTemplate:cphCenterContent:CenterContent:fcDropDo
wnList=ATVs&MasterTemplate:_PageTemplate:cphCenterContent:CenterContent:zip
TextBox=77090";
>> [snip] curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
>
> What's with the colons in the data? That doesn't look like the sort
> of data
> that you'd normally send in a POST.
Yup, AFAIK it stil should e ampersands.
Let cURL handle it though:
$topost = array(
'key1' => 'value',
'key2' => 'value2'
//etc...
);
curl_setopt($ch, CURLOPT_POSTFIELDS, $topost );
--
Rik Wasmus
[Back to original message]
|