hi there is anything wrong with the code down here....?
<?
@mysql_connect("localhost","root","") or die (mysql_error());
mysql_select_db("upit");
$sql="INSERT INTO students VALUES('$nama','$ic','$fakulti','$emel')";
$result=mysql_query($sql);
if ($result)
echo"Insert record Successfully";
else
echo "Problem inserting data";
?>