$site = 'http://finance.yahoo.com/d/quotes.csv?s=IAC-A.TO&f=snll1c'; $homepage = file_get_contents($site); $filename = 'wp-content/themes/infor/cache/quotes.csv'; $handle = fopen($filename,"w"); fwrite($handle,$homepage); echo "Success"; fclose($handle);