Advertisement
Guest User

Untitled

a guest
Apr 24th, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.65 KB | None | 0 0
  1. <table  class="display table table-bordered table-striped" id="dynamic-table">
  2.                             <thead>
  3.                               <tr>
  4.                                 <th>Artikelnummer</th>
  5.                                 <th>Name</th>
  6.                                 <th>mwst</th>
  7.                                 <th>Anzahl</th>
  8.                                 <th>Rabatt</th>
  9.                               </tr>
  10.                             </thead>
  11.                             <tbody>
  12.                                <?php foreach($this->articles as $key => $article) { ?>
  13.                         <tr class="gradeX">
  14.                             <td><?= htmlentities($article->id); ?></td>
  15.                             <td><?= htmlentities($article->name); ?></td>
  16.                             <td><?= htmlentities($article->mwst); ?></td>
  17.                             <td><input type="number" name="<?= htmlentities($article->id); ?>_quantity" value="">Stück</td>
  18.                             <td><input type="number" name="<?= htmlentities($article->id); ?>_discount" value="">%</td>
  19.                         </tr>
  20.                             <?php } ?>
  21.                              
  22.                             </tbody>
  23.                             <tfoot>
  24.                               <tr>
  25.                                 <th>Artikel Nummer</th>
  26.                                 <th>Name</th>
  27.                                 <th>mwst</th>
  28.                                 <th>Anzahl</th>
  29.                                 <th>Rabatt</th>
  30.                               </tr>
  31.                             </tfoot>
  32.                           </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement