Try...
$theContent = implode('',file('http://www.mapquest.com/maps/map.adp?country=US&addtohistory=&address=20675+Moore+St&city=Perris&state=CA&zipcode=92570&homesubmit.x=0&homesubmit.y=0'));
$fp = fopen('theContent.txt','a+');
if($fp)
{
fwrite($fp,$theContent);
}