File "conexion.php"
Full Path: C:/wamp64/www/INTERPRETE2/conexion.php
File size: 365 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
$host = "localhost";
$user = "SANMARINO";
$pw = "sanmarino2021*";
$bd = "interprete";
$conexion = mysqli_connect($host, $user, $pw, $bd);
$con = $conexion;
$mysqli = new mysqli("localhost", "SANMARINO", "sanmarino2021*", "interprete");
if ($mysqli->connect_errno) {
printf("Falló la conexión: %s\n", $mysqli->connect_error);
exit();
}