Jump to content

CSV


PandaPHP

Recommended Posts

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

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.