Please don't hijack others' threads with your own problems/issues/questions. Start your own thread instead.
maxy9;10986820 wrote:i cant access to phpmyadmin.
That's probably because there is no logging into phpMyAdmin in the end. What you're really logging into is the MySQL server (which phpMyAdmin does on your behalf).
maxy9;10986820 wrote:MySQL said: Documentation
#1045 - Access denied for user 'root'@'localhost' (using password: YES)
phpMyAdmin tried to connect to the MySQL server, and the server rejected the connection. You should check the host, username and password in your configuration and make sure that they correspond to the information given by the administrator of the MySQL server".
maxy9;10986820 wrote:How can i solve this problem?
Uh... did you even read the error message? It not only told you exactly what the problem is but also steps to take in order to resolve it.
maxy9;10986820 wrote:in edition how can i connect to mysql while i m using easyphp?
EasyPHP is a collection of software. You can't "use easyphp" to do anything.
Now, you can use PHP itself to connect to a MySQL server. For that, there are extensions such as [man]MySQLi[/man], [man]PDO[/man], and others.
maxy9;10986820 wrote:pls write the solution code completely .
Okay, sure:
<?php
do_everything_you_need_this_code_to_do();
?>
I'll leave the task of actually defining that function up to you. 😉