I'm trying to use jQuery to get autocomplete from a database. It works fine with English values but I have some rows in Arabic and they are showing as (????).
I start all my pages with:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<Link href="style2.css" rel="stylesheet" type="text/css">
<style type="text/css"></style>
My database is formatted in UTF8. I also include the connection to DB file which says :
$conn = mysql_connect("localhost","root","") or die ($dberror1);
mysql_select_db("finishing", $conn);
mysql_query("SET NAMES 'utf8'");
mysql_query('SET CHARACTER SET utf8')
Note: all my other items in Arabic work fine. It's just the jQuery autocomplete that I am having issues with.