File "conexion-20260419153852.php"

Full Path: C:/wamp64/www/APPSST/bd/conexion-20260419153852.php
File size: 369 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
$host = "localhost";
$user ="SANMARINO";
$pw ="sanmarino2021*";
$bd = "epp_sst";
//$bd = "dotacion_prueba2";

$conexion = mysqli_connect($host, $user, $pw, $bd);
$mysqli = new mysqli("localhost", "SANMARINO", "sanmarino2021*", "epp_sst");
if ($mysqli->connect_errno) {
    printf("Falló la conexión: %s\n", $mysqli->connect_error);
    exit();
}
?>