I am using xampp v 3.2.2.
I have change mysql port to 3308 and change the config.inc.php file as below:
$cfg['Servers'][$i]['host'] = '127.0.0.1:3308';
I am able to open phpmyadmin. But when I connect with the database with PHP it gives the following error:
Warning: mysqli_connect(): Server sent charset (255) unknown to the client
<?php
$c=mysqli_connect("localhost","root","",playwithmusic);
?>