I have two questions.
1) In phpmyadmin each time I log in it gives this error
Connection for controluser as defined in your configuration failed.
2) I'm trying to register an html form to the database but i got this warning says:
Warning: mysql_connect(): Access denied for user 'root'@'localhost' (using password: NO)
The Code:
<?php 
    mysql_connect("localhost", "root", ""); 
    mysql_select_db("bookaride"); 
?>
Edit:
/* Authentication type and info */ 
$cfg['Servers'][$i]['auth_type'] = 'cookie'; 
// Authentication method (config, http or cookie based) 
$cfg['Servers'][$i]['user'] = 'root'; 
$cfg['Servers'][$i]['password'] = ''; 
$cfg['Servers'][$i]['extension'] = 'mysqli'; 
$cfg['Servers'][$i]['AllowNoPassword'] = true; 
$cfg['Lang'] = '';
 
     
     
    