Files
Inventario_material_v1/conexion.php
T

25 lines
395 B
PHP
Raw Normal View History

2019-01-14 17:18:56 -06:00
<?php
2019-01-15 20:28:24 -06:00
/*
* 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");
2019-01-14 17:18:56 -06:00
if($mysqli->connect_errno):
echo "Error al conectarse con MYSQL por el error " .$mysqli->connect_error;
endif;
?>