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 and its much cleaner api.

-nathan

Reply via email to