Mercurial > hg > ywww
view mq.php @ 51:e6976d92cfc9
refactor 503
author | Charlie Root |
---|---|
date | Thu, 06 Jun 2019 16:32:56 -0400 |
parents | a67bf725e87b |
children | dd93cb4b77ad |
line wrap: on
line source
<?php function my_query($q,$d='x') { global $link; $res = mysqli_query($link, $q); if ($res) { return $res; } else { $err=mysqli_error( $link ); mysqli_close($link); include_once "dlog.php"; dl("query from $d failed: $q\n$err\n"); exit($err); } } ?>