please help me
it usually gives me error ( it says cant enter the values )
<?php
$host = "localhost";
$con = mysql_connect("localhost","awah","password") or die ("error to connect to the server");
// contact the table and enter the form
mysql_select_db("kigalifinders_clanteam_admin", $con);
$query = mysql_query("INSERT INTO contacts(from, subject, message) value('$_POST[email]','$_POST[subject]','$_POST[messgae]')");
if(!$query)
{
die ("cant enter the values");
}
mysql_close();
?>