Im sending an HTML form to a process.php file... my code is below
<?
$mysql_user="****";
$mysql_pass="**";
$mysql_host="localhost";
$dbname="******";
mysql_connect($mysql_host, $mysql_user, $mysql_pass);
mysql_select_db($dbname);
mysql_query("INSERT INTO Customer (Customer_ID, First_Name, Last_Name, Email, Meat, State, Experience) VALUES ($First_Name, $Last_Name, $Email, $Meat, $State, $Experience)");
mysql_close;
?>
I dont get an error, i just get a blank page, as i should... but no data has been entered into my database