-
Notifications
You must be signed in to change notification settings - Fork 2
/
cand_signup.php
181 lines (170 loc) · 4.18 KB
/
cand_signup.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
<?php
include("connection.php");
?>
<html>
<head>
<?php
include("script.php");
?>
<style>
.error {color: #FF0000;}
</style>
</head>
<body>
<div class='container-fluid'>
<?php
include("nav.php");
include("head.php");
echo"<br>
<div class='row'>
<div class='col-md-12'>
<div class='panel panel-primary min_h'>
<div class=well well-sm><h3>Sign Up Form for Candidate</h3></div>
<div class=row><div class='col-md-1'></div>";
// define variables and set to empty values
$nameErr = $rollErr = $mobErr = "";
$names = $roll = $mob = "";
$nameErr1 = $rollErr1 = $mobErr1 = $candErr1 = 0;
$len=0;
if (isset($_POST['submit'])) {
$c1=$_REQUEST['name'];
$can="select * from $c1.cand_signup";
$qq=mysqli_query($con,$can);
$num=mysqli_num_rows($qq);
if($num>8)
{
$candErr1=1;
?>
<script type="text/javascript">
alert("8 candidates already registered, more than 8 can't register contact admin");
</script>
<?php
}
if (empty($_POST["names"])) {
$nameErr = "Name is required";
$nameErr1=1;
} else {
$name = test_input($_POST["names"]);
if (!preg_match("/^[A-Za-z ]*$/",$name)) {
$nameErr = "Only letters and white space allowed";
$nameErr1=1;
}
}
if (empty($_POST["roll"])) {
$rollErr = "Roll no. is required";
$rollErr1=1;
} else {
$roll = test_input($_POST["roll"]);
$c1=$_REQUEST['name'];
$count=0;
$rd="select * from $c1.cand_signup where candroll='$roll'";
$res=mysqli_query($con,$rd);
$count=mysqli_num_rows($res);
if($count==1)
{
?>
<script type="text/javascript">
alert("Roll no. already registered");
</script>
<?php
}
$len=strlen($roll);
//echo $len;
$c1=$_REQUEST['name'];
$qs="select rollf from catinfo where catname='$c1'";
$quer=mysqli_query($con,$qs);
$row=mysqli_fetch_row($quer);
$rollen=strlen($row[0]);
$rolln=(string)$row[0];
//echo "$rollen";
for($i=0;$i<$rollen;$i++)
{
if($roll[$i]!=$rolln[$i])
{
$rollErr="Enter a valid format no.";
$rollErr1=1;
}
}
}
if (empty($_POST["mob"])) {
$mobErr = "Mobile no. is required";
$mobErr1=1;
} else {
$mobs = test_input($_POST["mob"]);
if (!preg_match("/^[6-9][0-9]{9}$/",$mobs)) {
$mobErr = "Invalid mobile format";
$mobErr1=1;
}
else{
$c1=$_REQUEST['name'];
$count=0;
$rd="select * from $c1.cand_signup where candmob='$mobs'";
$res=mysqli_query($con,$rd);
$count=mysqli_num_rows($res);
if($count==1)
{
?>
<script type="text/javascript">
alert("Phone no. already entered");
</script>
<?php
}
}
}
if($nameErr1==1 || $rollErr1==1 || $mobErr1==1 || $candErr1==1)
{
echo " ";
}
else
{
$naam1=$_POST["names"];
$anuk=$roll;
$c1=$_REQUEST['name'];
$mobi=$mob;
$aw="insert into $c1.cand_signup (candname,candroll,candmob) values('$naam1','$anuk','$mobs')";
$query=mysqli_query($con,$aw);
if($query)
{
echo "<p style='visibility:hidden'>saved</p>";?>
<script language='javascript' type='text/javascript'>location.href='homepage.php'</script>
<?php
}
else
{
die(mysqli_error($con));
}
}
}
function test_input($data) {
$data = trim($data);
$data = stripslashes($data);
$data = htmlspecialchars($data);
return $data;
}
?>
<div class='col-md-11'>
<form method='post' onsubmit='return frm_check()' enctype='multipart/form-data' action="<?php $_SERVER['PHP_SELF']?>">
<strong>Name</strong> <?php echo "<br>"?><input type="text" size="40px" name="names" placeholder="Enter Your Name" value="<?php echo $names;?>">
<span class="error"> <?php echo $nameErr;?></span>
<br><br>
<strong>Roll no.</strong><?php echo "<br>"?><input type="text" size="40px" name="roll" placeholder="Enter Your Roll No." value="<?php echo $roll;?>">
<span class="error"> <?php echo $rollErr;?></span>
<br><br>
<strong>Mob no.</strong> <?php echo "<br>"?><input type="tel" size="40px" name="mob" placeholder="Enter Your Mobile No." value="<?php echo $mob;?>">
<span class="error"> <?php echo $mobErr;?></span>
<br><br>
<input type="submit" name="submit" value="Submit">
</form>
</div>
</div>
</div>
</div>
</div>
<hr>
<?php
include("footer.php");
echo "</div>";
?>
</div>
</body>
</html>