|
@@ -1,23 +0,0 @@
|
1
|
|
-<?php
|
2
|
|
-/* Authors : Carlos C. Corrada-Bravo
|
3
|
|
- David J. Ortiz-Rivera
|
4
|
|
-
|
5
|
|
- Organization : Centro de Desarrollo y Consultoria Computacional
|
6
|
|
- Project : OPASO Material Registry
|
7
|
|
- File : config.php
|
8
|
|
- Description : Initialize database connection. */
|
9
|
|
-
|
10
|
|
- /* Initiate values */
|
11
|
|
- $server = 'localhost';
|
12
|
|
- $username = 'david.ortiz11';
|
13
|
|
- $password = 'John2815/';
|
14
|
|
- $name = 'OPASO';
|
15
|
|
-
|
16
|
|
- /* Create connection */
|
17
|
|
- $db = new mysqli($server,$username,$password,$name);
|
18
|
|
- /* Check connection */
|
19
|
|
- if ($db->connect_error){
|
20
|
|
- die('Connection failed: ' . $db->connect_error);
|
21
|
|
- }
|
22
|
|
- // echo 'Connected successfully <br>' ;
|
23
|
|
-?>
|