You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
531 B
21 lines
531 B
<?php |
|
|
|
declare(strict_types=1); |
|
|
|
namespace PhpMyAdmin\Controllers\Database\MultiTableQuery; |
|
|
|
use PhpMyAdmin\Controllers\AbstractController; |
|
use PhpMyAdmin\Database\MultiTableQuery; |
|
|
|
final class QueryController extends AbstractController |
|
{ |
|
public function __invoke(): void |
|
{ |
|
$params = [ |
|
'sql_query' => $_POST['sql_query'], |
|
'db' => $_POST['db'] ?? $_GET['db'] ?? null, |
|
]; |
|
|
|
$this->response->addHTML(MultiTableQuery::displayResults($params['sql_query'], $params['db'])); |
|
} |
|
}
|
|
|