Exp-12 Write a PHP program to check if a person is eligible to vote or not. The program should include the following

write this on the writing side

Minimum age required for vote is 18.
Use PHP functions.
Use Decision making statement.

<!DOCTYPE html>
<html>
<head>
<title>Eligible to Vote or not</title>
</head>
<body>
<form action="" method="post">
Enter Your Age :
<input type="text" name="t1" placeholder="Enter a
number">
<br><input type="submit" name="submit"
value="submit">
</form>
<?php
if (isset($_POST['submit'])) {
vote();
}
function vote() {
$a = $_POST['t1'];
intval($a);
if($a>=18){
echo "You are Eligible for Vote";
}
else{
echo "You are not Eligible for Vote";
}
}
?>
</body>
</html>

stick this output on the blank side

Leave a Comment

Scroll to Top