Jump to content

VijayaGanapathy

New Members
  • Posts

    2
  • Joined

  • Last visited

VijayaGanapathy's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Try with below code <?php $from = 'THB'; $to = 'USD'; $url = 'http://finance.yahoo.com/d/quotes.csv?f=l1d1t1&s='.$from.$to.'=X'; $handle = fopen($url, 'r'); if ($handle) { $result = fgetcsv($handle); fclose($handle); } echo '1 '.$from.' = '.$result[0].' '.$to.' as on '.$result[1].', '.$result[2]; ?>
  2. Check whether you have enctype="multipart/form-data" attribute inside form tag
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.