can I ask a question? how can I accept inputs in PHP......
here is the code.....
<html>
<body>
<h4>Grade Form</h4>
<form action="testingform.php" method="post"/>
Grade: <input name="Grade" type="text" />
</form>
<?php
if ($grade>="75")
{
echo "PASSED";
}
else($grade<="75")
{
echo " FAILED";
}
?>
</body>
</html>
the condition is if I put any number, either the passed or failed output should displayed....how should I do it....