PHP Classes

File: src/application/view/picture.php

Recommend this page to a friend!
  Classes of Java Mon   jframe   src/application/view/picture.php   Download  
File: src/application/view/picture.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: 729 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>
          </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>