PandaPHP Posted November 14, 2010 Share Posted November 14, 2010 I need help opening a CSV file and reading the data. I can open the file, I can explode the data, but its the bit inbetween I don't know what to do. I have read this but it means nothing. http://php.net/manual/en/function.fgetcsv.php If someone can give me a example of opening the file and reading the lines on a loop I would be grateful. Link to comment https://forums.phpfreaks.com/topic/218605-csv/ Share on other sites More sharing options...
PandaPHP Posted November 14, 2010 Author Share Posted November 14, 2010 Nevermind, I have done it.. <?php $handle = fopen("file.csv", "r"); if ($handle) { while (!feof($handle)) { $buffer = fgets($handle, 4096); if(!empty($buffer)){ list($title, $epic) = explode(",", $buffer); echo "$title, $epic, $board<br />"; } } fclose($handle); } ?> Link to comment https://forums.phpfreaks.com/topic/218605-csv/#findComment-1133948 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.