Problem when importing database UTF-8 encoded file table Arabic language change within the table How can I import the table encodes UTF-8 This is the current code I want to modify it
$sqlFile = 'sql/plugins.sql';
$queries = file_get_contents($sqlFile);
$queries = explode(';', $queries);
foreach ($queries as $query) {
mysql_query($query);
}