Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
loteo
:
connection.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php function connection() { $host = "192.200.100.40"; $user = "SANMARINO"; $pass = "sanmarino2021*"; $bd = "loteo"; /* $connect=mysqli_connect($host,$user, $pass); mysqli_select_db($connect, $bd); */ $connection = new mysqli($host, $user, $pass, $bd); /* return connect; */ return $connection; }