Advertisement
Guest User

Untitled

a guest
Jan 30th, 2015
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.51 KB | None | 0 0
  1. <table class="table" id="tabla-items">
  2.                                 <?php foreach ($listado_items as $k => $fact): ?>
  3.                                     <?php if ($cat["id_categoria"] == $fact["id_categoria"]): ?>
  4.                                         <tr>
  5.                                             <td width="10"><input type="checkbox" name="<?php echo $fact["id_item"]; ?>" class="checkbox-items" id="checkbox-items-<?php echo $fact["id_item"]; ?>"></td>
  6.                                             <td width="270"><?php echo $fact["item"]; ?></td>
  7.                                             <td width="100"><input type="number" class="form-control monto" placeholder="$" name="monto-<?php echo $fact["id_item"] ?>" id="monto-<?php echo $fact["id_item"] ?>" style="width: 200px;"></td>
  8.                                             <td width="100"><input type="number" class="form-control cantidad" placeholder="Nº Unidades" name="cantidad-<?php echo $fact["id_item"] ?>" id="unidades-<?php echo $fact["id_item"] ?>"  style="width: 150px;"></td>
  9.                                             <td width="100"><input type="number" class="form-control total" placeholder="Total" name="total-<?php echo $fact["id_item"] ?>"  id="total-<?php echo $fact["id_item"] ?>" style="width: 150px; cursor: pointer; background: white;" readonly></td>
  10.                                         </tr>
  11.                                     <?php endif; ?>
  12.                                 <?php endforeach; ?>
  13.                             </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement