Linked Questions

3 votes
1 answer
7k views

I have a csv file that I want to use with php. The first thing in the csv are column names. Everything is separated by commas. I want to be able to put the column names as the array name and all the ...
keith's user avatar
  • 31
8 votes
1 answer
3k views

How to upload file in php and send filename to database?
ktm's user avatar
  • 6,095
-1 votes
1 answer
3k views

I have a table on my webpage. I want to add more data by adding an import CSV button with that. The CSV's I will import would be exactly formatted in the manner the table is. So, how can I insert ...
Kushal Shah's user avatar
-1 votes
1 answer
814 views

I have been asked to create a site for a mobile tyre business. They want to have an online ordering system with a live data feed that will update the prices of tyres and quantity on a daily basis. My ...
Oliver Martin's user avatar
-2 votes
2 answers
615 views

i have a html dynamic html table, i want to download this table as excel file.And after downloading i could make some changes in it and again upload it to a folder where it would change the database ...
rahul's user avatar
  • 919
0 votes
1 answer
695 views

I am trying to write the code for parsing the uploaded .csv file. I have written the following code. The controller generates the rows of the CSV file in the form of arrays which I have also tried to ...
Sumit Gera's user avatar
  • 1,241
0 votes
2 answers
670 views

Im working on a web application that can use uploaded csv file and generate graph based on them. (for graphs im using zingchart). Im having trouble with understanding how to use uploaded file. this ...
h0neybaLL's user avatar
  • 101
0 votes
0 answers
582 views

I have been using the CSVToArray() Function as found here: Javascript code to parse CSV data The following code creates a download link to a .csv file that contains data from a string. window.URL = ...
Craigy Craigo's user avatar
-1 votes
1 answer
477 views

I want to upload a csv file in my database. If a cell of the csv file is empty i want to set the value = 0 because it gives error Undefined offset. i tried to check the values in a for loop but it ...
PX.'s user avatar
  • 5
1 vote
2 answers
602 views

I have a table in MYSQL where I wish to have the option that my customer can upload a CSV file. By default I want this to add information which isn't there and automatically update it if there is ...
Bradly Spicer's user avatar
0 votes
0 answers
161 views

I was wondering if anyone could either guide me or know where can I find out how to create a "submit form" of some sort to upload CSV. file to a primitive online application. Basically it is a little ...
Code Grasshopper's user avatar
-1 votes
1 answer
52 views

I have been trying to upload a CSV and manipulate the data but I dont think its being uploaded properly. My code is: HTML <form action="import_script.php" method="post" enctype="multipart/...
Kynan Pacheco's user avatar
0 votes
0 answers
51 views

whats good and simply way to convert csv file to 2d array, where i will be able to get value with $rownumber=1; $columnnumber=1; foreach ($array['rows'] as $row) { foreach ($row as $value) { ...
Dicanio's user avatar