-1

In my Table Creation I using Following Attributes

enter image description here

After Insert a Record It's Display in Phpmyadmin

enter image description here

Fetch Record in Frontend. Unicode Character as display Question Marks. How to solve It?

Pierre.Vriens
  • 2,117
  • 75
  • 29
  • 42
abitha shal
  • 41
  • 1
  • 10

1 Answers1

0

Set a PHP header:

header('Content-Type: text/html; charset=utf-8');

You may also need to set a metatag in HTML:

<meta http-equiv="Content-type" content="text/html; charset=utf-8" />

I hope this helps.

NerdyGeek
  • 144
  • 1
  • 7