PHP Classes

File: src/application/view/table.php

Recommend this page to a friend!
  Classes of Java Mon   jframe   src/application/view/table.php   Download  
File: src/application/view/table.php
Role: Example script
Content type: text/plain
Description: Example script
Class: jframe
Process and dispatch requests using MVC pattern
Author: By
Last change:
Date: 7 years ago
Size: 904 bytes
 

Contents

Class file image Download
<div class="col-sm-9">
          <h2>View ??? ?? ???</h2>
          <p>?? ???? ?? ?? ??????.</p>
          <table class="table">
            <thead>
              <tr>
                <th>?? ??</th>
                <th>?? ??</th>
                <th>?? ??</th>
                <th>?? ????</th>
              </tr>
            </thead>
            <tbody>
              <?php
               
foreach ($user as $key => $value) {
                    echo
"<tr>";
                    echo
"<td>{$value->user_index}</td>";
                    echo
"<td>{$value->user_name}</td>";
                    echo
"<td>{$value->user_alias}</td>";
                    echo
"<td>{$value->user_password}</td>";
                    echo
"</tr>";
                };
             
?>
</tbody>
          </table>
    </div>