Advertisement
Guest User

Untitled

a guest
Aug 22nd, 2014
288
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <form action="sell.php" method="post">
  2.     <fieldset>
  3.         <div class="form-group">
  4.             Stock:
  5.             <select name = "stock">
  6.         // stocks is an array passed through render from the controler with the symbol of every stock      
  7.             <?php foreach($stocks as $stock):?>
  8.                     <option value = <?= $stock ?>> </option>            
  9.         </div>
  10.         <?php endforeach ?>
  11.     </fieldset>
  12. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement