I have this INSERT INTO mysql command and it does not work is there any reason why not?
Also it does not give me a error message if it did have problems.
$enter = "INSERT INTO clients (clientsCOMPANY,clientsFNAME,clientsLNAME,clientsADDRESS,clientsTOWN,clientsSTATE,clientZIP,clientsPHONE,clientsCELL,clientsFAX,clientsEMAIL,clientsCOMMENTS) VALUES ('$company','$fname','$lname','$address','$town','$state','$zip','$phone','$cell','$fax','$email','$comments')" or die("Delete Error: ".mysql_error());
$result = mysql_query($enter);
If I take out a bunch of the other fieldnames and values then it works fine. I know that my variables are correct I have checked them over many times.
$enter = "INSERT INTO clients (clientsCOMPANY,clientsFNAME,clientsLNAME) VALUES ('$company','$fname','$lname')" or die("Delete Error: ".mysql_error());
$result = mysql_query($enter);