Guest User

Untitled

a guest
Feb 24th, 2011
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. function benefit_checkboxes(){
  2.  
  3. echo '
  4. <div class="clear"></div>
  5.  
  6. <div class="title">Please select the benefits you Provide.</div>
  7. ';
  8.  
  9. $result2 = mysql_query("SELECT * FROM benefits WHERE b_status='1'");
  10. if($result2){
  11.  
  12. while($r = mysql_fetch_array($result2)){
  13.  
  14. echo '<div class="cbwrapper"><label><input type="checkbox" name="keys[]" value="'.$r["b_id"].'">'.$r["b_name"].'</option></label></div>';
  15. $i++;
  16. if(($i%3) == 0){
  17.  
  18. echo '<div class="clearboth">test</div>';
  19. }
  20.  
  21.  
  22. }
  23.  
  24. }
  25.  
  26.  
  27. }
Advertisement
Add Comment
Please, Sign In to add comment