Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
INVENTAPP
/
models
:
modelo_conexion.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php class Conexion{ public static function Conectar() { define('servidor', '192.200.100.40'); define('nombre_bd', 'inventario'); define('usuario', 'SANMARINO'); define('password', 'sanmarino2021*'); $opciones = array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8'); try{ $conexion = new PDO("mysql:host=".servidor."; dbname=".nombre_bd, usuario, password, $opciones); return $conexion; }catch (Exception $e){ die("El error de Conexión es: ". $e->getMessage()); } } }