view db.php @ 1:d70fd5290b07

shared constants
author Charlie Root
date Wed, 16 Jan 2019 14:38:31 -0500
parents 8e907c11207a
children eec825432669
line wrap: on
line source

<?PHP
global $link;
$link = mysqli_connect("localhost","bookwhac","Wedding2010","bookwhac_books",
		       null,"/run/mysqld_test/mysqld.sock");
if (is_bool($link) or is_null($link)) {
  include_once "dlog.php";
  dl("connect failed: |$link|\n");
 }
include_once "mq.php";
?>