You have an error in the request, you incorrectly use quotes.
Try this:
mysql_query(' INSERT INTO figures (`obj`, `stl`, `aboutObj`, `aboutStl`) VALUES ("' . $obj . '", "' . $stl . '", "' . $aboutObj . '", "' . $aboutStl . '") ');
Or this way (I never used it this way, but in theory it should work too) :
mysql_query(" INSERT INTO figures (`obj`, `stl`, `aboutObj`, `aboutStl`) VALUES ('$obj', '$stl', '$aboutObj', '$aboutStl) ");
To find out the reasons, try to find out what the error is:
$result = mysql_query(' INSERT INTO figures (`obj`, `stl`, `aboutObj`, `aboutStl`) VALUES ("' . $obj . '", "' . $stl . '", "' . $aboutObj . '", "' . $aboutStl . '") '); if (!$result) { die('Неверный запрос: ' . mysql_error()); }
And on the screen of the database structure you have a gap in the last two columns - get rid of it =)
PS You have an ideal injection code, use PDO and prepared queries :)