Hey guys, I'm getting a "wrong parameter count" error on this piece of code on line 10, but it tells me the error is in the mysql_query. It's really small so if you could just point out what the heck is wrong that'd be awesome!
<?php
//Connect
include("common.php");
mysql_query("$h","$u","$p");
mysql_select_db("$db");
//Insert
mysql_query("insert into tal_dict(word,type,definition) values('".$word."','".$type."','".
$definition."')");
?>