Below is a code for enting form information into the database....I can't figure out what's wrong. It won't enter any info into the database.
$db = mysql_connect("localhost", "kwilli_kwilliams", "******");
mysql_select_db("kwilli_veritas",$db);
$query="INSERT INTO TABLE 'users' ('login', 'password', 'name', 'phone', 'description', 'email', 'column', 'id') VALUES ('$login', '$password', '$name', '$phone', '$informaton', '$email', '$column', '$id')";
$result = mysql_query($query,$db);