Php 1 1 voting
<!DOCTYPE html>
<head>
<?php
$age;
function vote_eligibility()
{
$age=$_POST['age'];
if($age<18)
{ echo "You are not eligible for voting";
}
else
{ echo "Congrats !!!!! You are eligible for Voting";
}
vote_eligibility();
?>
</head>
<body>
</body></html>
Comments
Post a Comment