Skip to content

Instantly share code, notes, and snippets.

@linktohack
Created June 20, 2016 07:20
Embed
What would you like to do?
Adminer 4.2.5 loader without password for SQLite
<?php
function adminer_object() {
class AdminerSoftware extends Adminer {
function login($login, $password) {
return true;
}
}
return new AdminerSoftware;
}
include "./adminer-4.2.5.php";
@jackycms
Copy link

this work for me , Thanks !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment