| 
<?phpinclude('./curl.wrapper.php');
 
 $curl = new CCurlWrapper();
 if($curl->InitEx() === false)
 die('Unable to init the CURL library' . "\n");
 
 // cache per month (the folder SHOULD have been created first)
 $curl->EnableCache(true, CACHE_MONTH, './cache');
 
 // POST parameters
 $pp = array();
 $pp['departement'] = '59';
 $pp['option'] = 'com_agency';
 $pp['task'] = 'findDepartement';
 $pp['view'] = 'agency';
 $curl->SetPOSTMode($pp);
 
 // request
 $content = $curl->Exec('http://www.assurance-mutuelle-poitiers.fr/agent-mutuelle/coordonnees');
 
 ?>
 |