Hi jesse
Still doesn't work I've got the follows error:
stdClass Object ( [error] => "match" must be "any" or "all" [code] =>
506 )
when I run this PHP snippet
$apikey = 'sssssssssssssssssssssss';
$list_id = 'xxxxxx';
$chunk_size = 4096;
$conditions = array();
$conditions[] = array('field'=>'email', 'op'=>'like',
'value'=>'
testm...@email.com');
$seg = array('match'=>'all', 'conditions'=>$conditions);
$url = '
http://us1.api.mailchimp.com/export/1.0/list?apikey='.
$apikey.'&id='.$list_id.'&segment='.$seg;
$handle = @fopen($url,'r');
if (!$handle) {
echo "failed to access url\n";
} else {
// do somthing here when get the result
}
Any idea?