LotGDocker/lotgd-web/lotgd/lib/sql.php
2020-08-17 19:16:42 -04:00

13 lines
236 B
PHP
Executable File

<?php
// translator ready
// addnews ready
// mail ready
// A slightly higher level SQL error reporting function.
function sql_error($sql){
global $session;
return output_array($session)."SQL = <pre>$sql</pre>".db_error(LINK);
}
?>