set_charset('utf8mb4'); echo "OK: connected as $U to $D\n"; $res = $db->query("SHOW TABLES"); echo "Tables:\n"; while ($row = $res->fetch_row()) { echo "- {$row[0]}\n"; } } catch (Throwable $e) { http_response_code(500); echo "ERROR: " . $e->getMessage() . "\n"; }