plz help me out.i've made form in php and saving data through this form in mysql table.but it is not saving actual data.below is code so plz tell me where is error::::
<HTML>
<?php
if($_POST['submit'])
{
$db=mysql_connect("localhost","root","");
mysql_select_db( "its",$db);
$sql ="insert into friends(f_name,f_add,f_fone_no,f_email,f_b_date) values ($POST["name"],$POST["add"],$POST["fone"],$POST["email"],$_POST["bday"])";
$result=mysql_query($sql);
echo "thnx info added to table\n";
}
else
{
?>
<form method="post" action="input.php">
name:<input type="Text" name="name"><br>
address:<input type="Text" name="add"><br>
phone:<input type="Text" name="fone"><br>
E-mail:<input type="Text" name="email"><br>
b-date:<input type="Text" name="bday"><br>
<input type="Submit" name="submit" value="Enter information"></form>
<?
}
?>
</HTML>