Create a database in MySQL I used phpMyAdmin to create my database and sometimes i used MySQL GUI tools for check my values. MySQL GUI tools support to view Unicode values from a database See my SQL backup file below and you can restore this backup file using phpMyAdmin.
-- -- Database: `unicode` -- CREATE DATABASE `unicode` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci; USE `unicode`;
Post a Comment