When I run a query directly in MySQL using phpMyAdmin it allows –
(long dash, not normal -
), but when I run this query from my PHP code, it turns them to –
.
If you encode – it'll come %E2%80%93
(in JavaScript). %E2
becomes â
, %80
becomes €
and %93
becomes “
. I don't understand when I run the query in phpMyAdmin it shaves data as –
, but when I run the query in my PHP code, then it does not work in the way I want.