$_post not working?

<html>

<head> <link rel="stylesheet" href="css/signup.css"> </head> <body> <div class="main"> <form action="includes/signup.inc.php" method="POST"> <br> <input type="text" name="fname" placeholder="First Name"> <br> <input type="text" name="lname" placeholder="Last Name"> <br> <input type="text" name="usrname" placeholder="Username"> <br> <input type="text" name ="grade" placeholder="Year/Grade"> <br> <input type="email" name="email" placeholder="Email"> <br> <input type="password" name="pwd" placeholder="Password"> <br> <input type="password" name="pwdconfirm" placeholder="Repeat Password"> <br> <input type="submit" value="Sign-Up" name="submit"> </form> <p><a href="login.php" class="login">Already have an account? Login</a></p> <p>By clicking Sign-Up, you agree to our <a href="legal/tos.php">Terms of Service</a> and <a href="legal/pp.php">Privacy Policy</a></p> </div> </body> </html>

Here is all the HTML

it is set to POST

/r/PHPhelp Thread Parent