Browse Source

Update index_testenv.php

tags/6.2.5
叙述、别离 2 years ago
parent
commit
091b3353ba
1 changed files with 11 additions and 9 deletions
  1. +11
    -9
      src/admin/index_testenv.php

+ 11
- 9
src/admin/index_testenv.php View File

@@ -155,15 +155,17 @@ if ($rs < 0) {
if (count($safeMsg) > 0) {
?>
<div class="alert alert-danger mt-3">
<?php
$i = 1;
foreach ($safeMsg as $key => $val) {
?>
<div class="my-1"><?php echo $i;?>、<?php echo $val;?></div>
<?php
$i++;
}
?>
<ul>
<?php
$i = 1;
foreach ($safeMsg as $key => $val) {
?>
<li><?php echo $i;?>、<?php echo $val;?></li>
<?php
$i++;
}
?>
</ul>
</div>
<?php
}

Loading…
Cancel
Save