The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
33 views

fputcsv inserting empty row in beginning of .csv

<?php $filename="backup_".date('m/d/Y', time()).".csv"; header('Content-Type: text/csv; charset=utf-8'); header('Content-Disposition: attachment;filename="'.$filename.'"'); header('Cache-Control: ...
1
vote
3answers
18 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
3answers
57 views

What kind of errors set “errno” to non-zero? Why does fopen() set “errno” while fputc() does not?

What kind of errors faced by what kind of library functions affect the errno and set it to non-zero value? In my following program, I intended to use if(errno!=0) as a condition to check if the ...
0
votes
1answer
16 views

Non-ascii characters in fputcsv

So I have a simple script that writes some data to a CSV-file. The file contains a few non-ascii characters (norwegian characters) which are not displayed correctly in when opened in Excel. However ...
0
votes
1answer
31 views

Exporting to csv formatting issue

I'm trying to export some data into a csv file, I've got the data going into the file, this is my code: *Please excuse me if the code is bad, I've never done anything like this and this was the only ...
0
votes
2answers
33 views

Change font style with fputcsv

I need to change the text of header from lighter to bold of the csv . I am using fputcsv() of php to generate to csv file. fputcsv($output,array('Report','Entitlement Report')); This is the basic ...
0
votes
1answer
40 views

Download a CSV file on an external server

The code below works on my localhost test machine, but I need to know how to get it to work on an external server. I need to be able to download the .csv file. Is there a way I can prompt the user to ...
0
votes
1answer
31 views

fputcsv exporting HTML when there isn't data to export

I have SQL query that exports data to a CSV. All works well until I go below a certain amount of data in the export. When I go below this threshold, the records are exported followed by the html of ...
0
votes
1answer
96 views

Export whole table to CSV using laravel

I am new to laravel and having a tough time figuring out a way to export one table to csv. I have tried the following code in the controller class, but it gives me an error: public function ...
0
votes
0answers
50 views

fputcsv fails if string to long

I'm trying to write to a csv file using fputcsv and it appears to be failing when the string is too long. Does fputcsv have a limit when writing?
0
votes
0answers
67 views

allow download using fputcsv but leaving out extra html code in outputted file?

In my code I am creating a file with fgetcsv. I download it and open the file but all the html from my page is included with the csv file. Is there anyway I can just have the data I want to output ...
0
votes
0answers
93 views

How to get NULL values in csv for MySQL with fputcsv?

In PHP I'm using the fputcsv function to produce a comma separated file for import in a MySQL-table (using LOAD DATA INFILE) : fputcsv($fcsv, array( $id, $name, $optional )); ...
3
votes
1answer
112 views

fputcsv in PHP will not write to file

I've have searched and searched and done extensive debugging and for the life of me cannot figure out why fputcsv is not working for me. I can sucessfully open the .csv file and write to it. My ...
0
votes
2answers
373 views

PHP Export to CSV file different behaviour in Excel 2007 and 2010

I'm trying to export an array to a CSV file using PHP's fputcsv function. However I get two completely different behaviours when opening the file in Excel 2007 and 2010. In Excel 2007 I get what I ...
0
votes
1answer
74 views

PHP, fputcsv, Want to write each array as a column not a row

Simple Example: $a = array(1,2,3,4); $b = array(10,20,30,40); $c = array(100,200,300,400); If I execute the following: $fp = fopen('somefile.csv','w'); fputcsv($fp,$a); fputcsv($fp,$b); ...
0
votes
1answer
65 views

php including a htmlcode snippet as a single field in a CSV using fputcsv

I am generating a csv from an array of arrays using fputcsv() . One of the field contians a html code snippet and it is causing problems when I open it in Excel. When opened in excel , it breaks ...
0
votes
2answers
71 views

Creating CSV with PHP

I am attempting to create a dynamic csv file to export to a vendors site on my site. They want all values surrounded with double quotes. I am attempting to create the line then feed it to a fputcsv() ...
1
vote
1answer
83 views

write to a csv file

getHistory downloads a CSV file from Yahoo finance API, i am trying to get the CSV file, and insert the symbol infront of each of the entries in the file. After that is done i want to write the CSV ...
0
votes
1answer
115 views

PHP: How can I add newly one row at the top of the csv file using fputcsv?

I want how can I add newly one new row at the top of the csv file becase in my csv file output its populated with data from database and what I want to happen is that I want to add corresponding ...
0
votes
2answers
252 views

PHP - Export MySQL query to CSV Changeup

I see plenty of postings about the proper ways to export to CSV, and most developers recommend to use fputcsv() How would I convert the script below to use fputcsv ? You'll see I'm also exporting the ...
1
vote
2answers
199 views

Export to CSV PHP as a Download File

I am using a CSV file to export a mysql table. How can I view it as a download file now that it is stored on Drive C: directly without any notification <?php $host = 'localhost'; // <-- db ...
1
vote
3answers
137 views

Force new line in CSV generated file in PHP

I am generating a CSV downloadable file in PHP. I have a problem that when I open file in MS Excell or Ubuntu Libre Office the formate is not like what is expected. I want this output but I can not ...
-3
votes
1answer
172 views

PHP Generated CSV File filled with html crap from webhost instead of data? [closed]

I am using PHP to generate a csv file with a first name and second name. On my local XAMPP server it works fine and generate this output. Andy,Murray Sarah,Palin Bob,Saget However on this ...
1
vote
1answer
383 views

Getting this PHP error: fputcsv() expects parameter 2 to be array

I am trying to insert an array into an array of arrays using array_splice. array_splice($array, 0, 0, $fieldNames); The resulting array is then converted to csv format with fputcsv. I get the ...
0
votes
4answers
798 views

Save a .csv file to desktop

I am developing a script using PHP to save a file to desktop as .csv file. I found this code sample from PHP Manual. <?php $list = array ( array('aaa', 'bbb', 'ccc', 'dddd'), array('123', '456', ...
0
votes
2answers
389 views

PHP checking if csv file exists?

The problem with this code is that each time I export from MySQL to csv it overwrites the already created csv. I want this code to check if there is an already created csv file -> create new one. Ex. ...
0
votes
2answers
1k views

PHP efficiently write and output csv files using fputcsv

When writing .csv files i use fputcsv like this: - open a temporary file $f = tmpfile(); - write content to file using fputcsv($f,$csv_row); - send appropriate headers for attachment - read file ...
0
votes
3answers
207 views

How to pass values of variable to an array in PHP and save it to CSV file?

I am trying to generate a CSV file containing the name and email address from an form in an HTML file and using the PHP fputcsv funtion. But I am unable to pass the value of variables to the array and ...
0
votes
1answer
335 views

fputcsv Inserting HTML code into a csv file

I have problem with writing csv file using fputcsv. Its putting the page html also into the csv file. Whats wrong with my code ? //Excel header header("Content-Disposition: attachment; ...
0
votes
1answer
236 views

fputCSV strange behaviour

I am using fputcsv to create a csv but the data it outputs starts on the 3rd row when i open it in excel. Why is this? I want to create a row of column headers using fputcsv, what is the best way to ...
0
votes
1answer
104 views

outputting array to a csv

I am trying to output data from an array to a csv and download it. I am using social engine which is built on zend framework. public function indexAction() { $this->outputCSV(); ...
0
votes
1answer
517 views

File permissions for fopen in write mode - PHP

I have a PHP script that writes some rows to a CSV file: $fp = fopen($csv, 'w'); I'm using mode 'w' so that it will create the file if it doesn't exist, however the file is automatically given 644 ...
0
votes
3answers
321 views

Php fputcsv trouble

I have a very basic question about fputcsv. My goal is to create a csv file where for each row the first column is the key and the second the value. The result of print_r on my table gives something ...
0
votes
3answers
1k views

fputcsv doesn't write any data in a CSV file

In my web site I'm creating a table from the mysql data and then now I want to add a export button buttom of the table so that a user will be able to download the data as an CSV file. To do that I ...
2
votes
3answers
658 views

fputcsv - only one column

I want to save parts (and differently arranged) of my mysql database in a CSV file. For that I wrote this piece of code: $headerDisplayed = false; foreach ($arr as &$currName) { $result2 = ...
1
vote
1answer
1k views

Avoid default quotes from csv file when using fputcsv

Avoid default quotes from csv using fputcsv fputcsv($fp, $array, ',', '"'); // OR fputcsv($fp, $array); In test.csv testname,045645765789,"""04.07.2012 12:10:52""" How to avoid above quotes ...
1
vote
3answers
457 views

fputcsv and integer typcasting to string

So I have a line that I want to do a fputcsv on that has some integers (that I need to be treated as strings but they are numbers). These integers have leading zeroes that get cut off when I do the ...
0
votes
1answer
366 views

Generate pipe delimited file through php

My code generates a txt file using PHP's fputcsv function. For the delimiter, I am trying to use '|' $query = mysql_query("SELECT email, emailSource FROM session WHERE is_complete='1' ORDER by ...
-1
votes
2answers
106 views

CSV file contain double entries PHP SQL SERVER

I am using a solution from this SO question to make a user download a csv file. However my CSV output contains double entries for each output e.g if expected output is 1,2,3,4,5 I get ...
0
votes
2answers
181 views

PHP + XPath + fputcsv - Storing data in arrays

I'm parsing some HTML with DOM/Xpath, with the ultimate goal of generating a .CSV file with the data I've grabbed with my queries. The current code below works, but only returns the last product ...
0
votes
2answers
1k views

fopen() / fputcsv( ) : error

Im looking for a way to export to a csv on the fly and came accross this. $list = array ( array('aaa', 'bbb', 'ccc', 'dddd'), array('123', '456', '789'), ...
0
votes
1answer
146 views

CSV generation Through Class giving result in just one Column

<?php class Zend_Controller_Action_Helper_Csv extends Zend_Controller_Action_Helper_Abstract { /** * Perform helper when called as ...
2
votes
1answer
151 views

Concurrent File Writes PHP

I have a project with a paranoid client... He is worried the site is going to crash if more than 200 people are using the site at the same time. Does my script look like it will collect the data ...
1
vote
3answers
1k views

store offline html form data in a csv file

I'm looking for a simple solution to what is hopefully a simple problem. I want to have a laptop set up with an offline html file with a very short form that feeds a csv file. I've been eyeing the ...
1
vote
2answers
705 views

PHP fputcsv producing empty files

I'm beginning work on a project that requires that I take multiple arrays and put them in a csv file. However, although it is generating the file, it is generally completely empty(0 b file size). ...
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, ...
0
votes
3answers
643 views

PHP: creating CSV file with windows encoding

i am creating csv files with php. To write the data into my csv file, i use the php function "fputcsv". this is the issue: i can open the created file normally with Excel. But i cant import the file ...
2
votes
1answer
520 views

fputcsv only returning one row from array

This must be really simple... Following examples on here and php.net, I'm trying to get records from a mysql query, convert them to csv format, and assign this data to a variable for use in a program ...
0
votes
1answer
341 views

CSV lines in array(), need to preserve line breaks

I have an array in the following format - it's essentially an array of preformatted CSV lines - key 0 and 1 in this example have a CSV value containing a line break. Array ( [0] => ...
-1
votes
1answer
440 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 = ...

1 2