-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcsv_upload.php
62 lines (54 loc) · 1.75 KB
/
csv_upload.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php
$db=mysqli_connect("localhost","root","","db1"); //connect to database
if(isset($_POST['submitfile']))
{
if($_FILES['file']['name'])
{
$filename = explode(".", $_FILES['file']['name']);
if($filename[1]=='csv')
{
if ($_FILES['file']['size'] > 1000000) //filesize greater than 1MB
{
$size = $_FILES['file']['size'];
$calc = ($size/1000);
echo 'Sorry, the file '.$_FILES['file']['name'].' is too large! ('.$calc.'KB)<br><br>';
break;
}
$handle = fopen($_FILES['file']['tmp_name'], "r");
$first_name=$middle_name=$last_name='';
while($data = fgetcsv($handle))
{
$item1 = mysqli_real_escape_string($db, $data[0]);
$item2 = mysqli_real_escape_string($db, $data[1]);
$item3 = mysqli_real_escape_string($db, $data[2]);
$item4 = mysqli_real_escape_string($db, $data[3]);
$item5 = mysqli_real_escape_string($db, $data[4]);
$item6 = mysqli_real_escape_string($db, $data[5]);
$item7 = mysqli_real_escape_string($db, $data[6]);
$sql = "insert into csv_data(id, name, email, phone, street_address, city, state, postal_code) values('','$item1','$item2','$item3','$item4','$item5','$item6','$item7')";
echo "<br>$sql";
mysqli_query($db, $sql) or die(mysqli_error($db)."...at line- ". __LINE__);
}
fclose($handle);
echo "IMPORT DONE!!!!!!!!!!!!!!!!!!!!!!!!!!!!";
}
else
{
echo 'Kindly upload csv file only!';
}
}
}
mysqli_close($db);
?>
<!DOCTYPE html>
<html>
<head>
<title>File upload using PHP</title>
</head>
<body>
<form method="POST" enctype="multipart/form-data">
<p> Upload CSV: (upto 1MB) <input type="file" name="file"></p>
<p> <input type="submit" name="submitfile" value="Import"></p>
</form>
</body>
</html>