DT
This commit is contained in:
parent
848f37cbfb
commit
6251a0444a
13
findindb.php
Executable file
13
findindb.php
Executable 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");
|
||||||
|
?>
|
Reference in New Issue
Block a user