Hi , Every body can help me in php? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Hi , Every body can help me in php?

i need a php programmer

28th Nov 2016, 1:01 AM
Mohammad Zarchi
Mohammad Zarchi - avatar
7 Answers
+ 4
This type of error occur when you have pass wrong arguments to function. please show your code. Don't need to show your user name and password. Correct them yourself.
28th Nov 2016, 2:33 AM
Aditya kumar pandey
Aditya kumar pandey - avatar
+ 3
when i coding for server (work with sql) , i see this error : Warning: mysqli_connect(): (28000/1045): Access denied for user ...
28th Nov 2016, 1:21 AM
Mohammad Zarchi
Mohammad Zarchi - avatar
+ 3
ok Thanks
28th Nov 2016, 2:34 AM
Mohammad Zarchi
Mohammad Zarchi - avatar
+ 2
I think you have mistake while declare username & password. Make sure your username & password is true.
28th Nov 2016, 1:29 AM
Fendi Septiawan
Fendi Septiawan - avatar
+ 1
why do do you need a php programmer?
28th Nov 2016, 1:02 AM
Junjie Gono
Junjie Gono - avatar
+ 1
Hello There .According to the error msg .The problems is that your database username or password doesn't match when you try to connect in the database throw php script ..you have to put same username or password in your php script here is simple example in phpmyadmin database username = root password = password by default username is root in phpmyadmin and password is null your php code goes here $hostname = "localhost"; $username = "root"; $password = "password"; //because we set password in db $dbname ="test"; $dbconnect = mysqli_connect($hostname , $username, $password,$dbname); //check the error if (mysqli_connect_errno()) { echo "Failed to connect to MySQL: " . mysqli_connect_error(); }
28th Nov 2016, 8:48 AM
Mahesh BudhaThoki
Mahesh BudhaThoki - avatar
0
Hi .-.
28th Nov 2016, 9:44 PM
Johnny Huerta
Johnny Huerta - avatar