Update Table UI for domain history

This commit is contained in:
johnnyq 2025-01-18 13:20:39 -05:00
parent eee5a9cd8d
commit 657d766fbd
1 changed files with 3 additions and 3 deletions

View File

@ -90,8 +90,8 @@ if (isset($_GET['domain_get_json_details'])) {
// Get domain history
$history_sql = mysqli_query($mysqli, "SELECT * FROM domain_history WHERE domain_history_domain_id = $domain_id");
$history_html = "<table class='table table-borderless'>";
$history_html .= "<tr><th>Date</th><th>Column</th><th>Old Value</th><th>New Value</th></tr>";
$history_html = "<table class='table table-sm table-striped border table-hover'>";
$history_html .= "<thead class='thead-dark'><tr><th>Date</th><th>Column</th><th>Old Value</th><th>New Value</th></tr></thead><tbody>";
while ($row = mysqli_fetch_array($history_sql)) {
// Fetch data from the query and create table rows
$history_html .= "<tr>";
@ -101,7 +101,7 @@ if (isset($_GET['domain_get_json_details'])) {
$history_html .= "<td>" . htmlspecialchars($row['domain_history_new_value']) . "</td>";
$history_html .= "</tr>";
}
$history_html .= "</table>";
$history_html .= "</tbody></table>";
// Return the HTML content to JavaScript
$response['history'] = $history_html;