Mercurial > hg > private
annotate db.php @ 1:d70fd5290b07
shared constants
author | Charlie Root |
---|---|
date | Wed, 16 Jan 2019 14:38:31 -0500 |
parents | 8e907c11207a |
children | eec825432669 |
rev | line source |
---|---|
0 | 1 <?PHP |
2 global $link; | |
3 $link = mysqli_connect("localhost","bookwhac","Wedding2010","bookwhac_books", | |
4 null,"/run/mysqld_test/mysqld.sock"); | |
5 if (is_bool($link) or is_null($link)) { | |
6 include_once "dlog.php"; | |
7 dl("connect failed: |$link|\n"); | |
8 } | |
9 include_once "mq.php"; | |
10 ?> |