-
Notifications
You must be signed in to change notification settings - Fork 3
/
voter.php
21 lines (21 loc) · 828 Bytes
/
voter.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
if(!isset($_SESSION)) {
session_start();
}
include "auth.php";
include "header_voter.php";
?>
<h4> Welcome <?php echo $_SESSION['SESS_NAME']; ?> </h4>
<h3>Make a Vote </h3>
<form action="submit_vote.php" name="vote" method="post" id="myform" >
<center><font size='6'> What is your favorite programming language? <BR>
<input type="radio" name="lan" value="java"> JAVA<BR>
<input type="radio" name="lan" value="python">PYTHON<BR>
<input type="radio" name="lan" value="c++"> C++<BR>
<input type="radio" name="lan" value="php"> PHP<BR>
<input type="radio" name="lan" value=".net"> .NET<BR>
</font></center><br>
<?php global $msg; echo $msg; ?>
<?php global $error; echo $error; ?>
<center><input type="submit" value="Submit Vote" name="submit" style="height:30px; width:100px" /></center>
</form>