Hello, when I try to login to my panel by means of the following code line:
mysql_connect($server, $user, $pass);
mysql_select_db($db);
Return the error:
Msql esta desactualizado.
Then what I do is pass it to msqli:
mysqli_connect($server, $user, $pass);
mysqli_select_db($db);
Could I try to redo the connection in PDO but maybe using msqli and the two parameters it asks would be enough? what is the other parameter that I have to put?