Mercurial > hg > ywww
view mq.php @ 55:72708ec9c0e6
debug bad XML error
author | Charlie Root |
---|---|
date | Fri, 07 Jun 2019 16:35:35 -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); } } ?>