Hi !
I really don't know how to do this, or where to began fixing the problem
I got this form that I send to a php via ajax
on the php I get all the value from the $_GET and then save em on a mysql database
The real problem is that accents are being saved in some sort strange form, If I try to echo the values on the php , they display correctly , however mysql says it stored a string like this 'áéÃ*óúâ ' that are usually 'áéíóú'
I already tryed to replace the symbols for letters and tryed to stored but no sucess
I also know that if I manage to replace the akward letters and replace em with á and so on the main problem would remain:
How can I search the work "rámen" if because of the accent it is stored "rámen" however i'd also like to see if the word is on another row without the accent :/
a LIKE sentence in my query wont return both results =(
what can I do ?