-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconn.php
More file actions
26 lines (20 loc) · 683 Bytes
/
conn.php
File metadata and controls
26 lines (20 loc) · 683 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
$user = 'root';
$passwd = '5x8nug';
$db = 'map_viewer';
$port = 5432;
$host = '192.168.0.101';
$strCnx = "host=$host port=$port dbname=$db user=$user password=$passwd";
$user_loguin = 'usuario';
$passwd_loguin = 'usuario';
$db_loguin = 'map_viewer';
$port_loguin = 5432;
$host_loguin = '192.168.0.101';
$strCnx_loguin = "host=$host_loguin port=$port_loguin dbname=$db_loguin user=$user_loguin password=$passwd_loguin";
$user_layers = 'usuario';
$passwd_layers = 'usuario';
$db_layers = 'wfs_layers';
$port_layers = 5432;
$host_layers = '192.168.0.101';
$strCnx_layers = "host=$host_loguin port=$port_loguin dbname=$db_loguin user=$user_loguin password=$passwd_loguin";
?>