PHP imports CSV file into MySQL database

Source: Internet
Author: User
Tags mysql database
The code is as follows Copy Code
$fname = $_files[' myfile ' [' name '];
$do = Copy ($_files[' myfile '] [' tmp_name '], $fname);
if ($do) {
echo "Successfully imported data <br>";
}else{
echo "";
}

The code is as follows Copy Code

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>

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.