-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathupload_image.php
127 lines (99 loc) · 3.73 KB
/
upload_image.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?php
include $_SERVER['DOCUMENT_ROOT']."/ProyekManpro/services/database.php";
header("Content-Type: application/json");
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$result = array(
"status" => 1,
"error" => ""
);
date_default_timezone_set('Asia/Jakarta');
$tanggal = date('Y/m/d H:i:s');
$conf_id = $_POST['confirm-id-aktivitas'];
$lokasi = $_POST['lokasi'];
$visited="";
$tmp_id_aktivitas = $_SESSION['simpan_id_aktivitas'];
$radioVal = $_POST["flexRadioDefault"];
if($radioVal == "first")
{
$visited=1;
}
else if ($radioVal == "second")
{
$visited=0;
}
if ($conf_id == ''|| $lokasi == '') {
header("HTTP/1.1 400 Bad Request");
$result['status'] = 0;
$result['error'] = 'Tanggal & Id Customer & Lokasi Must Have Value!';
} else {
$target_dir = "uploads/";
$target_file = $target_dir . basename($_FILES["fileToUpload"]["name"]);
$uploadOk = 1;
$imageFileType = strtolower(pathinfo($target_file,PATHINFO_EXTENSION));
// Check if image file is a actual image or fake image
if(isset($_POST["submit"])) {
$check = getimagesize($_FILES["fileToUpload"]["tmp_name"]);
if($check !== false) {
//echo "File is an image - " . $check["mime"] . ".";
$uploadOk = 1;
} else {
echo "File is not an image.";
$uploadOk = 0;
}
}
// Check if file already exists
if (file_exists($target_file)) {
//echo "Sorry, file already exists.";
$uploadOk = 0;
}
// Check file size
if ($_FILES["fileToUpload"]["size"] > 5000000) {
echo "Sorry, your file is too large.";
$uploadOk = 0;
}
// Allow certain file formats
if($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
&& $imageFileType != "gif" ) {
echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
$uploadOk = 0;
}
//Check if confirmation id match with the actual one
if($tmp_id_aktivitas != $conf_id){
$uploadOk = 0;
echo "Confirmation Id Not Match";
}
// Check if $uploadOk is set to 0 by an error
if ($uploadOk == 0) {
echo "Sorry, your file was not uploaded.";
// if everything is ok, try to upload file
} else {
if (move_uploaded_file($_FILES["fileToUpload"]["tmp_name"], $target_file)) {
$sql = "UPDATE aktivitas_sales SET jadwal_kunjungan= ?, status_kunjungan= ?, lokasi = ? ,foto_kunjungan= ? WHERE id_aktivitas=?";
$stmt = $pdo->prepare($sql);
$stmt->execute([$tanggal,$visited,$lokasi,$target_file,$conf_id]);
$simpanidcust = "SELECT id_customer FROM aktivitas_sales WHERE id_aktivitas = ?";
$test_1 = $pdo->prepare($simpanidcust);
$test_1->execute([$conf_id]);
$tmpid = $test_1->fetch(PDO::FETCH_ASSOC);
$idcustomerasli = $tmpid['id_customer'];
$sql_1 = "UPDATE customer SET terakhir_dikunjungi = ? WHERE id_customer = ?";
$test_2 = $pdo->prepare($sql_1);
$test_2->execute([$tanggal,$idcustomerasli]);
echo "Success, Your File has been uploaded";
} else {
echo "Sorry, there was an error uploading your file.";
}
}
}
echo "\n";
echo json_encode($result);
header( "Refresh:5; url=show_activity.php", true, 303);
//header("Location:show_activity.php");
} else {
header("HTTP/1.1 400 Bad Request");
$error = array(
'error' => 'Method not Allowed'
);
echo json_encode($error);
}
?>