I am trying to update a mysql database from a php form. My confirmation page comes up after submitting the form and there are no errors or anything peculiar. But nothing gets put into the database.
Any help or suggestions would be appreciated.
Here is my code:
<html>
<body>
<?php
$db = mysql_connect("localhost", "root", "my_password");
mysql_select_db("mydb",$db);
$sql = "INSERT INTO employees (First_Name, Last_Name, How_Many, Children) VALUES
('$First_Name','$Last_Name','$How_many','$Children')";
?>
<form method="post" action="done.php">
First name:<input type="Text" name="First_Name"><br>
Last name:<input type="Text" name="Last_Name"><br>
How Many:<input type="Text" name="How_Many"><br>
Children:<input type="Text" name="Children"><br>
<input type="Submit" name="submit" value="Enter information">
</form>
</body>
</html>



.