Search results

  1. J

    PHP Retrieving Stock Data

    I have been using the following code to retrieve stock data from Yahoo for over a year now: $live = "http://download.finance.yahoo.com/d/quotes.csv?s=" . $_GET["code"] . "&f=sb2m3m7et8n4e7e8e9ia2"; $file=fopen($live,"r") or exit("Unable to open file!"); while(!feof($file)) { echo...
  2. J

    Yahoo Finance

    I wrote a WordPress widget that extracts data from Yahoo Finance in the form of a csv file (written in PHP). I last tested it a week ago and it worked fine. I came back to it yesterday (thurs) and it's stopped working. It now runs really slowly and doesn't produce any results. I believe it...
Top