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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

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