0

I built a PHP web page and some of the characters are like this

⇾ .... 
â€....
etc

Please help me on how to eliminate this

vsol
  • 97
  • 2
  • 10
  • What database? What platform? Looks like a character set issue; what locale is set for the server where your PHP web page defined? Also, please [edit] your question and remove the `css` tag and add the `php` tag. – Mark Stewart May 26 '20 at 17:28
  • am using codeigniter – vsol May 26 '20 at 17:46

1 Answers1

0

If you're not using UTF-8 characterset, I would try to change the encoding of the database to avoid these characters: How to convert an entire MySQL database characterset and collation to UTF-8?

Joge
  • 11
  • 3