Ejemplo n.º 1
0
function CERRARCONEXION($RESULT = '')
{
    if ($RESULT != '') {
        MYSQLI_FREE_RESULT($RESULT);
    }
    // CERRAR CONEXIÓN A LA BD
    MYSQLI_CLOSE($GLOBALS['Conexion']);
}
Ejemplo n.º 2
0
 private function disconnect()
 {
     MYSQLI_CLOSE($this->conn);
 }