view mq.php @ 56:5f772caee9a7

try getting review from DB if throttled
author Charlie Root
date Fri, 07 Jun 2019 16:36:06 -0400
parents a04fc91bbd95
children
line wrap: on
line source

<?php
function my_query($q,$d='x')
{
  global $link;
  $res = mysqli_query($link, $q);
  include_once "dlog.php";
  dl("query from $d: ".is_bool($res) ? $res : mysqli_num_rows( $res )." $q\n");
  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);
  }
}
?>