Advertisement
alza

Untitled

Feb 29th, 2016
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1.  
  2. <?php
  3.  
  4. if(isset($_POST['j'])){
  5. $j=$_POST['j'];
  6. }
  7. else{
  8. $j=1;
  9. }
  10.  
  11.  
  12.  
  13. ?>
  14. <form method="post" action="hitung.php">
  15. <div><input type="text" name="napem" class="form-control" style="width: 200px; margin-top: -30px;" placeholder="Nama Pembeli" required=""/><br />
  16. <?php
  17. for($i=1;$i<=$j;$i++){
  18. ?><div class="container">
  19. <div class="row">
  20. <div class="col-md-8"><div class="col-md-6" style="margin-bottom: 8px;">
  21. <select name="hp<?php echo $i;?>" class="form-control">
  22. <?php
  23. $query=mysql_query("select * from barang order by id DESC");
  24. while($array=mysql_fetch_array($query)){
  25. ?><option><?php echo $array['nama']; ?></option>
  26. <?php
  27. }
  28. ?>
  29. </select>
  30. </div>
  31. <div class="col-md-6">
  32. <input type='text' placeholder="Jumlah Item" name='jml<?php echo $i;?>' id="an" oninput="angka()" class="form-control" />
  33. </div>
  34. </div>
  35.  
  36.  
  37. <?php }
  38. ?>
  39. <div class="col-md-4">
  40. </div>
  41. </div>
  42.  
  43. <div class="col-md-12" style="margin-top: 50px;">
  44. <div class="col-md-4" style="text-align: right;">
  45. <a href="penjualan.php"><input type="button" value="Atur Ulang" class="btn btn-danger" style="width: 50%;"/></a>
  46. </div>
  47. <div class="col-md-4">
  48. <center><input type="hidden" name="x" value="<?php echo $j; ?>"/><input type="submit" value="Hitung" class="btn btn-primary" style="width: 100%;"/></center></form>
  49. </div><div class="col-md-4" style="text-align: left;">
  50. <form method="post" action="penjualan.php"><input type="hidden" value="<?php echo $j+1; ?>" name="j"/><input type="submit" value="Tambah Belanjaan" class="btn btn-warning" style="width: 50%;" /></form>
  51. </div>
  52. </div>
  53.  
  54. </div>
  55.  
  56. <?php
  57. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement