Advertisement
yesamarcos

Código completo que resgata todos os produtos

Nov 25th, 2014
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.23 KB | None | 0 0
  1. <?php
  2.  
  3. while($PA = $BuscaProdutosAtivos->fetch()){ ?>
  4.    
  5.     <div id="display_produtos" class="col-md-4">
  6.  
  7.         <div class="panel panel-danger">
  8.  
  9.             <div class="panel-heading">
  10.                 <h4 class="text-center categoria_produto"><?=strtoupper($PA['nome'])?></h4>
  11.             </div>
  12.            
  13.             <div class="panel-body">
  14.            
  15.                 <p class="lead no-margin text-center"><strong><?=$PA['prod_nome']?></strong></p>
  16.                
  17.             </div>
  18.  
  19.             <ul class="list-group list-group-flush text-justify mb10">
  20.                 <li class="list-group-item"><?=$PA['prod_descr']?></li>
  21.             </ul>
  22.  
  23.             <div class="panel-body">
  24.            
  25.                 <select name="quantidade" class="form-control chosen-select" data-placeholder="Escolha a quantidade">
  26.                     <option value=""></option>
  27.                     <?php for($i = 0; $i < 101; $i++) { ?>
  28.                         <option value="<?=$i?>"><?=$i?></option>
  29.                     <?php } ?>
  30.                 </select>
  31.                
  32.                 <hr>
  33.                
  34.                 <select name="variacoes" class="form-control chosen-select" data-placeholder="Escolha a variação">
  35.                     <option value=""></option>
  36.                     <option value="1"><?="R$".$PA['valor']?></option>
  37.                 </select>
  38.                
  39.             </div>
  40.  
  41.             <div class="panel-footer">
  42.                 <a class="btn btn-lg btn-block btn-danger" href="#">DETALHES DO PEDIDO</a>
  43.             </div>
  44.         </div>
  45.        
  46.     </div>
  47.    
  48. <?php } ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement