Hello,
I have some html that was inserted into a mysql database from a csv file, which in turn was exported from an access mdb file. The mdb file was exported as Unicode, and indeed is unocode. I am however unsure as what encoding the mysql database has.
When I try to echo out html stored in a field however, there is no unicode. This is a direct retrieval of one of the html fields in the database.
http://www.yousendit.com/download/TTZueEVYQzMrV3hMWEE9PQ
it says utf-8 in the source. the actual page code generated from echoing out article_desc is here:
http://www.nomorepasting.com/getpaste.php?pasteid=22566
I need to use this html with JSON, and I am wondering what I should do. I can not use any other frameworks or libraries. Should I convert the data before inserting it into the mysql db, or something else?