Tagged Questions
1
vote
3answers
26 views
Converting csv files data to an array using php str_getcsv function
I have string like which is created using fputcsv
Date,Name,Hours 2013-01-02,"Test User",7:59 2013-01-03,"Test User",7:53 2013-01-04,"Test User",8:12 2013-01-07,"Test User",7:56 2013-01-08,"Test ...
0
votes
1answer
325 views
writing to CSV using fgetcsv
I am having some trouble with my PHP code.
Basically I have a list of people in CSV, and I am reading that file into a table using fgetcsv. What I'm trying to do is have their names appear as a Link, ...
-1
votes
1answer
444 views
fputcsv and fgetcsv
My code looks like this .. the o/p is a csv file with 4 values in ONE cell and so on in the FIRST column alone
Better versions of this code please . ASAP
foreach ($xml->xyz as $xyz) {
$f = ...
0
votes
1answer
892 views
How to concatenate two strings using fgetcsv and fputcsv?
I'm creating a script that will read a csv file and display it on a textarea using fgetcsv.
$handle = @fopen($filePath, "r");
if ($handle)
{
while (($buffer = fgetcsv($handle, ...
