1
0
This commit is contained in:
Daniel Tartavel 2019-09-01 20:42:03 +02:00
parent 848f37cbfb
commit 6251a0444a

13
findindb.php Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/php
<?php
require("db.class.php");
$database = $argv[1];
$password = (isset($argv[2]))?$argv[2]:"";
$string = (isset($argv[3]))?$argv[3]:"";
$db = new db ("nextcloud");
$db->query("SHOW tables FROM $database;");
print_r($db);
//$db->query("SHOW columns FROM $table");
?>