1234567891011121314151617181920212223 |
- <?php
-
-
-
- $server = 'localhost';
- $username = 'david.ortiz11';
- $password = 'John2815/';
- $name = 'OPASO';
-
-
- $db = new mysqli($server,$username,$password,$name);
-
- if ($db->connect_error){
- die('Connection failed: ' . $db->connect_error);
- }
-
- ?>
|