<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
mysql_query("update `mudasser`
set `name`='$name',
`ar_name`='$ar_name',
`address`='$address',
`type`='$type',
`telephone`='$telephone',
`date_added`='$date',
`image`='$file'
where `id`='$id'"
when i echo the query this is the result
update `mudasser` set `name`='Boknan', `ar_name`='بوكنان', `address`='E2', `type`='Abaya Galabia', `telephone`='2535338', `date_added`='2015-06-01 08:54:11', `image`='Boknan.jpg' where `id`='128'
You can see the arabic name appearing correct
but in the database the arabic name is somehow like this ???????
If i run this query directly in mysql, it runs perfect and it is also reading correct arabic in php page.
For reference i am using <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
in php and also using utf-8 in db.
I have searched the net and Stackoverflow but i cant find any answer.