Search found 2 matches

by mirefoot
Wed Nov 04, 2009 5:47 am
Forum: PHP - Code
Topic: Using multiple fopen or multiple fgetcsv
Replies: 1
Views: 390

Re: Using multiple fopen or multiple fgetcsv

Amazing I self fixed my problem. I don't know why this works but here is the code... If there is a better way of doing it please let me know. <?php   $file_oil = fopen("http://download.finance.yahoo.com/d/quotes.csv?s=CLZ09.NYM&f=sl1d1t1c1ohgv&e=.csv", "r"); $file_gold = ...
by mirefoot
Wed Nov 04, 2009 5:34 am
Forum: PHP - Code
Topic: Using multiple fopen or multiple fgetcsv
Replies: 1
Views: 390

Using multiple fopen or multiple fgetcsv

I am trying to read two csv files on the same page so that I can display the data from then on the page. But I only ever seem to see the data from the first file??? <?php   $file_oil = fopen("http://download.finance.yahoo.com/d/quotes.csv?s=CLZ09.NYM&f=sl1d1t1c1ohgv&e=.csv", "...