Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created September 29, 2020 23:25
Show Gist options
  • Save parzibyte/2151361a8b26c4120b4e33e7acac01d3 to your computer and use it in GitHub Desktop.
Save parzibyte/2151361a8b26c4120b4e33e7acac01d3 to your computer and use it in GitHub Desktop.
<?php
$host = "localhost";
$usuario = "root";
$contrasenia = "";
$base_de_datos = "videojuegos";
$mysqli = new mysqli($host, $usuario, $contrasenia, $base_de_datos);
if ($mysqli->connect_errno) {
echo "Falló la conexión a MySQL: (" . $mysqli->connect_errno . ") " . $mysqli->connect_error;
}
return $mysqli;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment