25 lines
395 B
PHP
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;
|
|
?>
|