I seem to be getting a really annoying sql problem on a very simple query
where $val_1 = 'coverletter'
It gives me
... why does it tell me that the $val_1 is an 'unknown column' ? It's a value and not a col in the first place.
Code:
$sql = "INSERT INTO constellation ( constellation_coverletter )
VALUES ( $val_1 )
";
It gives me
Code:
SQL Error : 1054 Unknown column 'coverletter' in 'field list'
INSERT INTO constellation ( constellation_coverletter ) VALUES ( coverletter )
Line : 43
File : my_presentation.php