Files
Inventario_material_v1/conexion.php
T
2019-01-15 20:28:24 -06:00

25 lines
395 B
PHP

<?php
/*
* conexion a viper
* */
/*
* $mysqli = new mysqli("132.248.80.194",
"usr_inv_material",
"tint4sBond",
"P_orion_inventario_material");
*/
/*
* conexion local
* */
$mysqli = new mysqli("localhost",
"blender",
"avatares1",
"inventario");
if($mysqli->connect_errno):
echo "Error al conectarse con MYSQL por el error " .$mysqli->connect_error;
endif;
?>