shish 2 yıl önce
ebeveyn
işleme
84e2984aa7
1 değiştirilmiş dosya ile 2 ekleme ve 2 silme
  1. 2 2
      app-ghs/controllers/TestController.php

+ 2 - 2
app-ghs/controllers/TestController.php

@@ -425,16 +425,16 @@ class TestController extends BaseController
             $new[] = ['name' => $name, 'status' => $group];
             $new[] = ['name' => $name, 'status' => $group];
         }
         }
         if (!empty($new)) {
         if (!empty($new)) {
-            echo "<table>";
             foreach ($new as $info) {
             foreach ($new as $info) {
+                echo "<table style='font-size:20px;'>";
                 echo "<tr><td>{$info['name']}</td></tr>";
                 echo "<tr><td>{$info['name']}</td></tr>";
                 if (!empty($info['status'])) {
                 if (!empty($info['status'])) {
                     foreach ($info['status'] as $item) {
                     foreach ($info['status'] as $item) {
                         echo "<tr><td>{$item}</td></tr>";
                         echo "<tr><td>{$item}</td></tr>";
                     }
                     }
                 }
                 }
+                echo "</table>";
             }
             }
-            echo "</table>";
         }
         }
     }
     }