I created a PHP application using wamp server (2.5), phpmyadmin (4.1.14). I have several forms which retrieve information from html input tags. Now if the user does not "touch" the input field of an input type text, when I save the new value to the column of database, instead of adding an empty value ("") it adds the characters:  . If the field was filled by my javascript, which gets the existing value in DB, and the user again does not touch it, it becomes like this in column: existingvalue. Further on, the value in phpmyadmin becomes: (...)existingvalue.
I'm not sure if this is an encoding problem, the php scripts are encoded in UTF-8, the database is utf8_general_ci, the field is varchar(20) utf8_general_ci. Funny thing is, those weird characters are never displayed on the browser, they seem to be ignored, so everything works fine on the user display. But I think that might become a problem later on maybe.
Thanks in advance for you attention, Best Regards, Bruno