Jump to content

threaders

New Members
  • Posts

    2
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

threaders's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi, Been puzzling over this one. I get a warning in the error_log that fills up my hosting space. It is: PHP Warning: fgetcsv() expects parameter 1 to be resource, boolean given in As far as I can work out from php.net, the syntax is correct. The code does work, but put this warning in the error_log. Any ideas how to correct the code? Thanks, Andy php file is located in www root, csv file is located in data subfolder. <?php $filname = "data/pictures-pres08a.csv"; $handle = fopen($filname, "r"); while (($data = fgetcsv($handle, 1000, ",")) !== FALSE) { for ($c=0; $c < $num; $c++) { echo $data[$c]; } } fclose($handle); ?>
×
×
  • 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.