<div class="col-sm-9"> 
      <h2>View ??? ?? ???</h2> 
      <p>?? ???? ?? ?? ??????.</p> 
      <table class="table"> 
        <thead> 
          <tr> 
            <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><img src='{$value->user_image}' width='50px' /></td>"; 
                echo "</tr>"; 
            }; 
          ?> 
        </tbody> 
      </table> 
</div> 
 
 
 |