Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
31 righe
675 B
31 righe
675 B
<? |
|
if (!empty($errors)) { |
|
?> |
|
<div class="table-responsive"> |
|
<table class="table table-striped"> |
|
<thead> |
|
<tr> |
|
<td width="10"><?= __("linea") ?></td> |
|
<td><?= __("errore") ?></td> |
|
</tr> |
|
</thead> |
|
<tbody> |
|
<? |
|
foreach($errors AS $linea => $errori) { |
|
$linea++; |
|
foreach($errori AS $errore) { |
|
?> |
|
<tr> |
|
<td><?= $linea ?></td> |
|
<td><strong><?= $errore ?></strong></td> |
|
</tr> |
|
<? |
|
} |
|
} |
|
?> |
|
</tbody> |
|
</table> |
|
</div> |
|
<? |
|
} |
|
?>
|