My input tag started to go crazy… I have html form for input to database and it was working ok… In one moment it started to input me “” before typed text to database and to view…
If it is of importance project is in Java, and data is in MySQL.
the code is same as for 100 other forms that I have in project I checked 10 times.
the part that is making mistake is :
<tr>
<td><label for="agr_notes">Nota</label></td>
<td><input type="text" name="agr_notes" id="agr_notes" class="text ui-widget-content
ui-corner-all"/></td>
</tr>
And for example instead of input ASD i get  ASD in database and on screen.
Check the encoding type of the table in which you store the data in your database. Maybe it is not the same as all other tables. Since the characters appear after inserting values and all other forms are working, the problem must be around encoding or string format.
I suggest checking the encoding in database.