1234567891011121314151617181920212223 |
- <?php
- /* Authors : Carlos C. Corrada-Bravo
- David J. Ortiz-Rivera
-
- Organization : Centro de Desarrollo y Consultoria Computacional
- Project : OPASO Material Registry
- File : config.php
- Description : Initialize database connection. */
-
- /* Initiate values */
- $server = 'localhost';
- $username = 'david.ortiz11';
- $password = 'John2815/';
- $name = 'OPASO';
-
- /* Create connection */
- $db = new mysqli($server,$username,$password,$name);
- /* Check connection */
- if ($db->connect_error){
- die('Connection failed: ' . $db->connect_error);
- }
- // echo 'Connected successfully <br>' ;
- ?>
|