Created
October 12, 2016 09:48
-
-
Save MichaelJJames/2b07158c314c7141028a00cf22d34309 to your computer and use it in GitHub Desktop.
Convert DB utf8mb4/utf8mb4_unicode_ci to utf8/utf8_general_ci --- http://stackoverflow.com/questions/29916610/1273-unknown-collation-utf8mb4-unicode-ci-cpanel#answer-29939906
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>DB-Convert</title> | |
<style> | |
body { font-family:"Courier New", Courier, monospace;" } | |
</style> | |
</head> | |
<body> | |
<h1>Convert your Database to utf8_general_ci!</h1> | |
<form action="db-convert.php" method="post"> | |
dbname: <input type="text" name="dbname"><br> | |
dbuser: <input type="text" name="dbuser"><br> | |
dbpass: <input type="text" name="dbpassword"><br> | |
<input type="submit"> | |
</form> | |
</body> | |
</html> | |
<?php | |
if ($_POST) { | |
$dbname = $_POST['dbname']; | |
$dbuser = $_POST['dbuser']; | |
$dbpassword = $_POST['dbpassword']; | |
$con = mysql_connect('localhost',$dbuser,$dbpassword); | |
if(!$con) { echo "Cannot connect to the database ";die();} | |
mysql_select_db($dbname); | |
$result=mysql_query('show tables'); | |
while($tables = mysql_fetch_array($result)) { | |
foreach ($tables as $key => $value) { | |
mysql_query("ALTER TABLE $value CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci"); | |
}} | |
echo "<script>alert('The collation of your database has been successfully changed!');</script>"; | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment