-
Notifications
You must be signed in to change notification settings - Fork 0
/
photoimage.php
134 lines (115 loc) · 4.01 KB
/
photoimage.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
<?php
include('scripts/conn.php');
if (mysqli_connect_errno()) {
echo "failed to connect to mysql:". mysqli_connect_error();
}
include('scripts/session.php');
$rowregno = $row['regno'];
$path = "uploads/";
$valid_formats = array("jpg");
if(isset($_POST) and $_SERVER['REQUEST_METHOD'] == "POST")
{
$name = $_FILES['photoimg']['name'];
$size = $_FILES['photoimg']['size'];
if(strlen($name))
{
list($txt, $ext) = explode(".", $name);
if(in_array($ext,$valid_formats))
{
if($size<(1024*100))
{
$actual_image_name = $rowregno."P.".$ext;
$tmp = $_FILES['photoimg']['tmp_name'];
if(move_uploaded_file($tmp, $path.$actual_image_name))
{
echo "<img src=\"uploads/{$rowregno}P.{$ext}\" class=\"photopreview\">";
}
else
{
echo "failed";
}
}
else
{
echo "<div align=\"center\" style=\"font-weight:bold; font-size:16px; background-color:white; width:106px;
height:116px; border:2px solid; border-color:red;\" ><br><br>Maximum file size 100 kb</div>";
}
}
else
{
echo "<div align=\"center\" style=\"font-weight:bold; font-size:16px; background-color:white; width:106px;
height:116px; border:2px solid; border-color:red; \"><br><br>Invalid file format..</div>";
}
}
else
{
echo "<div align=\"center\" style=\"font-weight:bold; font-size:16px; background-color:white; width:106px;
height:116px; border:2px solid; border-color:red;\"><br><br>Please select image..!</div>";
}
exit;
}
/*
//enable this section to upload and preview image to database
include('scripts/conn.php');
if (mysqli_connect_errno()) {
echo "failed to connect to mysql:". mysqli_connect_error();
}
include('scripts/session.php');
$rowregno = $row['regno'];
$path = "uploads/";
$valid_formats = array("jpg");
if(isset($_POST) and $_SERVER['REQUEST_METHOD'] == "POST")
{
$name = $_FILES['photoimg']['name'];
$size = $_FILES['photoimg']['size'];
if(strlen($name))
{
list($txt, $ext) = explode(".", $name);
if(in_array($ext,$valid_formats))
{
if($size<(1024*100))
{
$actual_image_name = $rowregno."P.".$ext;
$tmp = $_FILES['photoimg']['tmp_name'];
if(move_uploaded_file($tmp, $path.$actual_image_name))
{
$type = pathinfo($path.$actual_image_name, PATHINFO_EXTENSION);
$data = file_get_contents($path.$actual_image_name);
$dataUri = 'data:image/' . $type . ';base64,' . base64_encode($data);
include('scripts/conn.php');
if (mysqli_connect_errno())
{
echo "failed to connect to mysql:". mysqli_connect_error();
}
//mysqli_query($con, "UPDATE cen0114 SET fnp='$actual_image_name' WHERE regno='$rowregno'");
$result= mysqli_query($con, "UPDATE picsig SET fnp='$dataUri' WHERE regno='$rowregno'");
$result= mysqli_query($con, "select * from picsig where regno='$rowregno'");
$Pic= mysqli_fetch_array($result);
echo '<img src="'.trim($Pic['fnp']).'" class="photopreview">';
}
else
{
echo "failed";
}
}
else
{
echo "<div align='center' style='font-weight:bold; font-size:16px; background-color:white; width:106px;
height:116px; border:2px solid; border-color:red; '><br><br>Maximum file size 100 kb</div>";
}
}
else
{
echo "<div align='center' style='font-weight:bold; font-size:16px; background-color:white; width:106px;
height:116px; border:2px solid; border-color:red; '><br><br>Invalid file format..</div>";
}
}
else
{
echo "<div align='center' style='font-weight:bold; font-size:16px; background-color:white; width:106px;
height:116px; border:2px solid; border-color:red; '><br><br>Please select image..!</div>";
}
exit;
}
*/
?>