How to Show Special Characters in PHP?

Firstly if you are having a trouble in mysql look that article. If you handle that problem and still your special characters looking like ???? this because you didn't identify the character set in database connection. If you identify the character set as charset=utf8mb in PDO connecrion your problem will be solved.

<?php

$db = new PDO('mysql:host=localhost;charset=utf8mb4;dbname=dbName', 'dbUser', 'dbPass');

 

Comments

There are no comments, make the firs comment