El paso a paso o código que verás en este artículo es la solución más sencilla y efectiva que hallamos a tus dudas o dilema.
Ejemplo: mysqli_connect(): (hy000/2002): no se pudo realizar ninguna conexión porque la máquina de destino la rechazó activamente.
If you look at your XAMPP Control Panel, it's clearly stated that the port to the MySQL server is 3306 - you provided 3360. The 3306 is default, and thus doesn't need to be specified. Even so, the 5th parameter of mysqli_connect() is the port, which is where it should be specified.
You could just remove the port specification altogether, as you're using the default port, making it
$dbhost = 'localhost';
$dbuser = 'root';
$dbpass = '';
$db = 'test_db13';
References
mysqli_connect()
Standard connection of MySQL
Si guardas algún recelo o capacidad de enriquecer nuestro escrito eres capaz de escribir un paráfrasis y con deseo lo ojearemos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)