-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathuploadcode.php
executable file
·125 lines (115 loc) · 4.03 KB
/
uploadcode.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
<?php
include('src/functions.php');
include('src/config.php');
include('src/session_check.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>SPA Pathcare : Upload Report</title>
<?php include('src/head.php') ?>
</head>
<body>
<?php include('src/preload.php') ?>
<!--=========== BEGIN HEADER SECTION ================-->
<?php include('src/header.php') ?>
<!--=========== END HEADER SECTION ================-->
<?php
echo youAreHere("Upload Result");
$id = $_GET['id'];
$data = $_GET['data'];
if (isset($_POST['btn'])) {
$server_path = '';
if ($data == 'doctor') {
$server_path = "docreports";
} else if ($data == 'test') {
$server_path = "testreports";
}
#normal data type varible
$file_name = $_POST['file_name'];
#file type
$file_o_name = $_FILES['img']['name'];
$file_size = $_FILES['img']['size'];
$file_type = $_FILES['img']['type'];
if ($file_size > 1572864) {
alert_and_redirect("File Size Exceeded!!!", "upload.php");
}
/*echo "file type is ".$file_type.'<br>';
echo "file size is ".$file_size.'<br>';
echo "file orig name is ".$file_o_name.'<br>';*/
if ($file_type == "application/pdf") {
#after the file gets validated now lets upload
#lets create a server path before uploading
if (!file_exists($server_path)) {
mkdir($server_path);
}
#after creating a folder we have to create a proper definate path
//microtime();
$server_path = $server_path . "/" . rand(1000, 9999) . "_" . $file_o_name;
#now upload
$upload = move_uploaded_file($_FILES['img']['tmp_name'], $server_path) or die($_FILES['img']['error']);
if ($upload) {
#save data
$saveData = mysqli_query($con, "UPDATE doctor_app SET report='$server_path' WHERE id='$id' ") or die(mysqli_error($con));
if ($saveData) {
alert_and_redirect("Uploaded Sucessfully", "upload.php");
}
}
} else {
alert_and_redirect("File type should be pdf only", "upload.php");
}
}
?>
<section id="service">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12">
<div class="service-area">
<!-- Start Service Title -->
<div class="section-heading">
<h2>Upload Result</h2>
<div class="line"></div>
</div>
<div class="service-content">
<div class="row">
<div class="col-lg-12 col-md-12">
<form class="appointment-form" method="post" enctype="multipart/form-data">
<div class="row">
<div class="col-lg-2 col-md-2"></div>
<div class="col-lg-8 col-md-8 col-sm-6">
<label class="control-label">Name <span class="required">*</span></label>
<input type="text" class="wp-form-control wpcf7-text" name="file_name" required>
</div>
<div class="col-lg-2 col-md-2"></div>
</div>
<div class="row">
<div class="col-lg-2 col-md-2"></div>
<div class="col-lg-8 col-md-8 col-sm-6">
<label class="control-label">Upload file: <span class="required">*</span></label>
<input type="file" class="wp-form-control wpcf7-text" name="img" required>
</div>
<div class="col-lg-2 col-md-2"></div>
</div>
<div class="row">
<div class="col-lg-2 col-md-2"></div>
<div class="col-lg-8 col-md-8 col-sm-6">
<button class="wpcf7-submit button--itzel" name="btn" type="submit">
<i class="button__icon fa fa-share"></i><span>Upload</span>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--=========== Start Footer SECTION ================-->
<?php include('src/footer.php') ?>
<!--=========== End Footer SECTION ================-->
<?php include('src/incfooter.php') ?>
</body>
</html>