Advertisement
GWibisono

form banyak check dan muncul hasil

May 30th, 2012
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. /*
  3. setelah di klik.. lebih baik apa yg km klik nongol di atas jgn
  4. dibawah!!
  5. */
  6. $s="<p><ol>";
  7.  
  8. if($_POST)
  9. {
  10.     foreach($_POST[c] as $id){ 
  11.      $s.="<li>tampilkan data dengan id=$id";
  12.     $s.=" dan kotak input harganya ";
  13.     $s.="<input type=text name=price[$id] />";
  14.     }
  15.  
  16. }
  17.  
  18.  
  19. $s.="</ol>";
  20.  
  21. echo "<form method=post name=update  >";
  22. for($i=100;$i<110;$i++)
  23. {
  24.    $s.="<br><input type=checkbox name='c[]'
  25. value='$i' />{tebal}$i{/tebal}";
  26.  
  27. }
  28.  
  29. $s=str_replace("{tebal}","<strong>",$s);
  30. $s=str_replace("{/tebal}","</strong>",$s);
  31.  
  32. echo $s;
  33. ?>
  34.  
  35. <input type=submit value='go' />
  36. </form>
  37. *Klik terserah.. klik sebagian ato cuma 1.. perhatian apa yg terjadi setelah di klik
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement