Mercurial > hg > private
annotate db.php @ 0:8e907c11207a
using test db
| author | Charlie Root |
|---|---|
| date | Wed, 16 Jan 2019 14:38:15 -0500 |
| parents | |
| 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 ?> |
