Hi i have this simple php insert statement, but whatever i try it says:
Unknown column 'company_name' in 'field list'
all the column names are the same in my html documnt, this statement here and in my database table. Thsi is really simple and driving me mad
<?
if($_POST['add']) {
include("includes/db_connect.inc.php");
$sql = ("INSERT INTO customers
(company_name, address_line1, address_line2, city, postcode, contact_name, emailaddress, webaddress, phone, fax, mobile) VALUES
('$_POST[company_name]', '$_POST[address_line1]', '$_POST[address_line2]', '$_POST[city]', '$_POST[postcode]', '$_POST[contact_name]',
'$_POST[emailaddress]', '$_POST[webaddress]', '$_POST[phone]', '$_POST[fax]', '$_POST[mobile]')");
$result = @mysql_query($sql,$connection) or die(mysql_error());
}
?>
any help much appreciated.
cheers