How can my mysql query change Şarapçı Çağ
to Sarapci-Cag
I tried this:
SELECT CONVERT('Şarapçı Çağ' USING latin1) -> ?arapç? Ça?
What can I do?
after getting the result you can change like:
"ş","ţ","ă" by "s","t","a" using str_replace.
or you can visit here:PHP converting special characters, like ş to s, ţ to t, ă to a