-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.php
29 lines (24 loc) · 985 Bytes
/
db.php
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
27
28
<?php
//
// database connectivity
//
$dbc = mysql_connect("localhost", "cover", "coverpass") or die (mysql_error());
$db = mysql_select_db("cover") or die (mysql_error());
mysql_set_charset('utf8', $dbc);
/*
mysql> desc measure;
+-------+---------+------+-----+---------+----------------+
| Field | Type | Null | Key | Default | Extra |
+-------+---------+------+-----+---------+----------------+
| ix | int(11) | NO | PRI | NULL | auto_increment |
| build | int(11) | YES | | NULL | |
| lvl | int(11) | YES | | NULL | |
| absx | int(11) | YES | | NULL | |
| absy | int(11) | YES | | NULL | |
| sig | int(11) | YES | | NULL | |
| qual | int(11) | YES | | NULL | |
| ch | int(11) | YES | | NULL | |
+-------+---------+------+-----+---------+----------------+
8 rows in set (0.00 sec)
*/
?>