I saved the values to mysql and I saw spaces like that.
INSERT INTO `names` VALUES (7, 'James Bond ');
I tried to make it:
INSERT INTO `names` VALUES (7, 'James Bond');
I know make it like that: (But it stripts the space between the words too)
INSERT INTO `names` VALUES (7, 'JamesBond');