Useragent for Parsing in PHP
Often sites check for the presence of the USERAGENT header and respond with a denial if it is not set. It can be set via CURL:
<?php
curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)');
?>