<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> 
 
 
 |