system: Linux mars.sprixweb.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
<table class="noclick">
<thead>
<tr>
<th><?= __('Storage Engine'); ?></th>
<th><?= __('Description'); ?></th>
</tr>
</thead>
<tbody>
<?php foreach ($engines as $engine => $details): ?>
<tr class="
<?= $details['Support'] == 'NO' || $details['Support'] == 'DISABLED' ? ' disabled' : ''; ?>
<?= $details['Support'] == 'DEFAULT' ? ' marked' : ''; ?>">
<td>
<a rel="newpage" href="server_engines.php<?= \PMA\libraries\URL::getCommon(array('engine' => $engine)); ?>">
<?= htmlspecialchars($details['Engine']); ?>
</a>
</td>
<td><?= htmlspecialchars($details['Comment']); ?></td>
</tr>
<?php endforeach; ?>
</tbody>
</table>