-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfile_upload_pro.php
214 lines (179 loc) · 7.24 KB
/
file_upload_pro.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
<?php
include'all.php';
?>
<style>
.li-hover:hover{
}
.bg-title{
background: rgba(221,75,57,1);
background: -moz-linear-gradient(left, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 59%, rgba(241,111,92,1) 97%, rgba(241,111,92,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(221,75,57,1)), color-stop(0%, rgba(221,75,57,1)), color-stop(59%, rgba(221,75,57,1)), color-stop(97%, rgba(241,111,92,1)), color-stop(100%, rgba(241,111,92,1)));
background: -webkit-linear-gradient(left, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 59%, rgba(241,111,92,1) 97%, rgba(241,111,92,1) 100%);
background: -o-linear-gradient(left, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 59%, rgba(241,111,92,1) 97%, rgba(241,111,92,1) 100%);
background: -ms-linear-gradient(left, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 59%, rgba(241,111,92,1) 97%, rgba(241,111,92,1) 100%);
background: linear-gradient(to right, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 59%, rgba(241,111,92,1) 97%, rgba(241,111,92,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dd4b39', endColorstr='#f16f5c', GradientType=1 );
}
.bg-title2{
background: rgba(221,75,57,1);
background: -moz-linear-gradient(left, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 27%, rgba(241,111,92,1) 90%, rgba(241,111,92,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(221,75,57,1)), color-stop(0%, rgba(221,75,57,1)), color-stop(27%, rgba(221,75,57,1)), color-stop(90%, rgba(241,111,92,1)), color-stop(100%, rgba(241,111,92,1)));
background: -webkit-linear-gradient(left, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 27%, rgba(241,111,92,1) 90%, rgba(241,111,92,1) 100%);
background: -o-linear-gradient(left, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 27%, rgba(241,111,92,1) 90%, rgba(241,111,92,1) 100%);
background: -ms-linear-gradient(left, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 0%, rgba(221,75,57,1) 27%, rgba(241,111,92,1) 90%, rgba(241,111,92,1) 100%);
}
@media only screen and (max-width: 990px) {
.pm, .pro-box{
border-bottom:solid 1px silver;
padding-bottom: 10px;
}
.boxzol{
margin-bottom:20px;
}
.forum{
margin-left:5px;
margin-right:5px;
}
.forum2{
margin-left:5px;
margin-right:5px;
}
.topinfo{
margin-left:2px;
margin-right:2px;
}
}
@media only screen and (min-width: 990px) {
.pm{
border-right:solid 1px silver;
border-left:solid 1px silver;
}
.boxzol{
margin-bottom:10px;
}
.topinfo{
margin-left:10px;
margin-right:10px;
}
.forum2{
padding-left: 0px;
}
}
</style>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<section class="content">
<?php
if(isset($_SESSION['user_id']) && !empty($_SESSION['user_id']))
{
require 'storedata.php';
$name=@$_FILES['file']['name'];
$tmp_name=@$_FILES['file']['tmp_name'];
$size=@$_FILES['file']['size'];
$type=@$_FILES['file']['type'];
$pro_id1=$pro_id + 1;
$extension=strtolower(substr($name,strpos($name,'.')+1));
if(isset($name))
{
if(!empty($name))
{
$location="images/products/";
$location1="images/productsthumb/";
if(($extension=='jpg' || $extension=='jpeg' || $extension=='png') && ($type=='image/jpeg' || $type=='image/png') && ($size<=100000000))
{
if(move_uploaded_file($tmp_name,$location.$pro_id.'.jpg'))
{
$im=$location1.$pro_id.'.jpg';
@$im_size=getimagesize($im);
$im_width=$im_size[0];
$im_height=$im_size[1];
@$new_size=($im_width+$im_height)/($im_width*($im_height/100));
$new_width=$im_width*$new_size;
$new_height=$im_height*$new_size;
@$new_image=imagecreatetruecolor($new_width,$new_height);
@$old_image=imagecreatefromjpeg($im);
@imagecopyresized($new_image,$old_image,0,0,0,0,$new_width,$new_height,$im_width,$im_height);
@imagejpeg($new_image,$location1.$pro_id.'.jpg');
$url='main_pro.php';
echo '<script type="text/javascript">';
echo 'window.location.href="'.$url.'";';
echo '</script>';
}
else
{
echo '<b style="color:red;">  error in uploading</b>';
}
}
else
{
echo '<b style="color:red;">  Please Upload jpeg/jpg/png file and below 100kb</b>';
}
}
else
{
echo '<b style="color:red;">  Please Upload file</b>';
}
}
else
{
echo '<b style="color:red;">  Please Select File</b>';
}
?>
<div class="row" style="background-color:#ecf0f5;height:5px;">
</div>
<!-- Main row -->
<!-- /.row -->
<div class="row" style="margin:10px -7px; ">
<!-- Left col -->
<!-- /.col -->
<div class="col-md-7 col-md-offset-1 forum">
<!-- Info Boxes Style 2 -->
<!-- PRODUCT LIST -->
<div class="box box-primary" style="border-top-color:#d2d6de;">
<div class="box-header with-border bg-title" style="">
<h3 class="box-title" style="color:white;">Upload Image</h3>
</div>
<!-- /.box-header -->
<div class="box-body">
<div>
<form class="form-horizontal" id="form1" name="form1" method="post" action="file_upload_pro.php" enctype="multipart/form-data">
<div class="box-body">
<div class="form-group">
<label for="exampleInputFile">Upload Product Photo</label>
<input id="exampleInputFile" name="file" type="file">
<p class="help-block">Upload your file here.</p>
</div>
</div>
<!-- /.box-body -->
<div class="box-footer">
<a href="main_pro.php"><button type="button" class="btn btn-default">Skip this Step</button></a>
<button type="submit" value="upload" class="btn btn-info pull-right">Submit</button>
</div>
<!-- /.box-footer -->
</form>
</div>
</div>
<!-- /.box-body -->
</div>
<!-- /.box -->
</div>
<!-- /.col -->
</div>
</div>
<!-- /.row -->
<?php
}
else {
}
?>
<br>
<br>
<br>
<br>
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<?php
include'footer.php';
?>