9 lines
296 B
PHP
9 lines
296 B
PHP
<?php
|
|
$mysqli = new mysqli("132.248.80.194","usr_inv_material","tint4sBond","P_orion_inventario_material");
|
|
if ($mysqli->ping()) {
|
|
printf ("¡La conexión está bien!\n");
|
|
}
|
|
if($mysqli->connect_errno):
|
|
echo "Error al conectarse con MYSQL por el error " .$mysqli->connect_error;
|
|
endif;
|
|
?>
|