Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to upload a csv file with php. After the file is uploaded, I want to display the data of the CSV file. I would like an example how to accomplish this task.

share|improve this question
5  
Handling file uploads in the PHP manual – Pekka 웃 Apr 8 '11 at 10:02
4  
fgetcsv() in the PHP manual – Pekka 웃 Apr 8 '11 at 10:02
2  
You didn't find any tutorial that explains uploading files with PHP? I bet there are some... – Felix Kling Apr 8 '11 at 10:03
Yes,i got its php.net manual – Vinay Apr 8 '11 at 10:05
i am confused to choose a plugin,Suggest me a best plugin to upload files in php. – Vinay Apr 8 '11 at 10:18
show 3 more comments

4 Answers

up vote 9 down vote accepted

Althoug You would easily find a tutorial how to handle file uploads with php, and there are functions (manual) to handel csv, I will post some code, because just ja few days ago I worked on an project, including a bit code you could need...

HTML:

<table width="600">
<form action="<?php echo $_SERVER["PHP_SELF"]; ?>" method="post" enctype="multipart/form-data">

<tr>
<td width="20%">Select file</td>
<td width="80%"><input type="file" name="file" id="file" /></td>
</tr>

<tr>
<td>Submit</td>
<td><input type="submit" name="submit" /></td>
</tr>

</form>
</table>

PHP:

if ( isset($_POST["submit"]) ) {

   if ( isset($_FILES["file"])) {

            //if there was an error uploading the file
        if ($_FILES["file"]["error"] > 0) {
            echo "Return Code: " . $_FILES["file"]["error"] . "<br />";

        }
        else {
                 //Print file details
             echo "Upload: " . $_FILES["file"]["name"] . "<br />";
             echo "Type: " . $_FILES["file"]["type"] . "<br />";
             echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />";
             echo "Temp file: " . $_FILES["file"]["tmp_name"] . "<br />";

                 //if file already exists
             if (file_exists("upload/" . $_FILES["file"]["name"])) {
            echo $_FILES["file"]["name"] . " already exists. ";
             }
             else {
                    //Store file in directory "upload" with the name of "uploaded_file.txt"
            $storagename = "uploaded_file.txt";
            move_uploaded_file($_FILES["file"]["tmp_name"], "upload/" . $storagename);
            echo "Stored in: " . "upload/" . $_FILES["file"]["name"] . "<br />";
            }
        }
     } else {
             echo "No file selected <br />";
     }
}

I know there must be an easier way to do this, but I read the CSV-File and store the single cells of every record in an two dimensional array.

if ( $file = fopen( "upload/" . $storagename , r ) ) {

    echo "File opened.<br />";

    $firstline = fgets ($file, 4096 );
        //Gets the number of fields, in CSV-files the names of the fields are mostly given in the first line
    $num = strlen($firstline) - strlen(str_replace(";", "", $firstline));

        //save the different fields of the firstline in an array called fields
    $fields = array();
    $fields = explode( ";", $firstline, ($num+1) );

    $line = array();
    $i = 0;

        //CSV: one line is one record and the cells/fields are seperated by ";"
        //so $dsatz is an two dimensional array saving the records like this: $dsatz[number of record][number of cell]
    while ( $line[$i] = fgets ($file, 4096) ) {

        $dsatz[$i] = array();
        $dsatz[$i] = explode( ";", $line[$i], ($num+1) );

        $i++;
    }

        echo "<table>";
        echo "<tr>";
    for ( $k = 0; $k != ($num+1); $k++ ) {
        echo "<td>" . fields[$k] . "</td>";
    }
        echo "</tr>";

    foreach ($dsatz as $key => $number) {
                //new table row for every record
        echo "<tr>";
        foreach ($number as $k => $content) {
                        //new table cell for every field of the record
            echo "<td>" . $content . "</td>";
        }
    }

    echo "</table>";
}

So I hope this will help, it is just a small snippet of code and I have not tested it, because I used it slightly different. The Comments should explain everything.

share|improve this answer
what if some one wanted to save the $content obtained from the inner foreach loop in the text-fields? I am trying to do this here : stackoverflow.com/questions/14536221/… – mozart Jan 27 at 16:12

untested but should give you the idea. the view:

<form action="upload.php" method="post" enctype="multipart/form-data">
<input type="file" name="csv" value="" />
<input type="submit" name="submit" value="Save" /></form>

upload.php controller:


$csv = array();

// check there are no errors
if($_FILES['csv']['error'] == 0){
    $name = $_FILES['csv']['name'];
    $ext = strtolower(end(explode('.', $_FILES['csv']['name'])));
    $type = $_FILES['csv']['type'];
    $tmpName = $_FILES['csv']['tmp_name'];

    // check the file is a csv
    if($ext === 'csv'){
        if(($handle = fopen($tmpName, 'r')) !== FALSE) {
            // necessary if a large csv file
            set_time_limit(0);

            $row = 0;

            while(($data = fgetcsv($handle, 1000, ',')) !== FALSE) {
                // number of fields in the csv
                $num = count($data);

                // get the values from the csv
                $csv[$row]['row1'] = $data[0];
                $csv[$row]['row2'] = $data[1];

                // inc the row
                $row++;
            }
            fclose($handle);
        }
    }
}
share|improve this answer

You want the handling file uploads section of the PHP manual, and you would also do well to look at fgetcsv() and explode().

share|improve this answer
Watch out for commas, quotes and linebreaks inside string values, you should use a state machine to split CSV, not explode. – Emyr Apr 8 '11 at 10:18

Hi i feel str_getcsv — Parse a CSV string into an array is the best option for u. 1. You need to upload the file to sever 2. parse the file using str_getcsv. 3. run through the array and align as per u need in ur website.

share|improve this answer
Thanks for the reply.and i have another question for you that which is the best plugin to upload file so that it avoids size of code and has good user interface,please suggest me a plugin – Vinay Apr 8 '11 at 10:28
@vinay - i prefer my own upload script to be written. what do u mean by upload plugin ??? you can write one on your own write... its max 10 lines of code – Hacker Apr 8 '11 at 10:32
ok,Thanks for the reply. – Vinay Apr 8 '11 at 10:36
@vinay - if u really wanna have a plugin to do (php +js) check out tinyurl.com/44nv6yt – Hacker Apr 8 '11 at 10:41

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.