My table looks like this-
province_id int(11)
province_title char(200) utf8_general_ci
parent int(8) int(2)
I have inserted a lot of data direct from phpMyadmin (not from php page). but when i retrieve those data and show them in php page, then there are problems with special characters.
like-
Québec shows - Qu�bec.
my html header looks like -
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
i think the problem might have happened while inserting the data. how can i convert those data in phpmyadmin? any help?