Advertisement
Guest User

Untitled

a guest
Aug 7th, 2012
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <fieldset>
  2.     <legend>Select Your Classes</legend>
  3.         <?php
  4.         $result = mysql_query("SELECT * FROM courses");
  5.                            
  6.         echo "<div class='control-group'><label class='control-label'>Classes</label><div class='controls'>";
  7.                            
  8.         while($row = mysql_fetch_array($result))
  9.           {
  10.             echo "<label class='radio'>";
  11.             echo "<input type='radio' name='class[".$row['name']."]' value='1' id='mathhl'>".$row['name']."";
  12.             echo "</label>";
  13.           }
  14.         echo "</div></div>";
  15.                            
  16.         mysql_close($con);
  17.         ?>         
  18. </fieldset>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement