How PHP imports CSV files into MySQL database _php tips

Source: Internet
Author: User

This example describes the way PHP imports a CSV file into a MySQL database. Share to everyone for your reference. The specific analysis is as follows:

This program to achieve the principle of data import is to upload a CSV file to the server, and then through the PHP fopen and fgetcsv file to save the data to the array, and then use while to insert data into the MySQL database, the code is as follows:

Copy Code code as follows:

<?php
$fname = $_files[' myfile ' [' name '];
$do = Copy ($_files[' myfile '] [' tmp_name '], $fname);
if ($do) {
echo "Successfully imported data <br>";
}else{
echo "";
}

error_reporting (0);//import CSV format file
$connect =mysql_connect ("localhost", "root", "") or Die ("could not connect to database");
mysql_select_db ("Gklqtzcx", $connect) or Die (Mysql_error ());
mysql_query ("Set names ' GBK '");
$fname = $_files[' myfile ' [' name '];
$handle =fopen ("$fname", "R");
while ($data =fgetcsv ($handle, 10000, ",")) {
$q = "INSERT Into records (Name,classes,a_time,college,notify,receiver,r_time,handler) VALUES (' $data [1] ', ' $data [2] ', ' $data [3] ', ' $data [4] ', ' $data [5] ', ' $data [6] ', ' $data [7] ', ' $data [8] '];
mysql_query ($q) or Die (Mysql_error ());
}
Fclose ($handle);
echo "<meta http-equiv=" "Refresh" content= "1;url=list.php" >1 seconds into the list page, please wait a moment. ";
?>
<form enctype= "Multipart/form-data" action= "<?php echo" "". $_server["Php_self"]. ""; ?> "method=" POST ">
<p> Import CVS data <input name= "myfile" type= "file" > <input value= "submitted" type= "Submit" >
</p>
</form>

I hope this article will help you with your PHP program design.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.