if special characters are not displaying in php .if it is showing like “?” use below steps
1)Add below meta tag in between <head></head> section <meta charset=”utf-8” />
2) Use htmlentities function to display mysql query result
$value=htmlentities($row[‘name’]);
echo $value;