Guest User

Untitled

a guest
Dec 18th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. echo "<table class='table table-hover'>
  2. <tbody>";
  3. while($alum = mysql_fetch_assoc($res2)){
  4. echo "<tr>
  5. <th>".$alum['nombre_completo']."</th>";
  6.  
  7. while($asis = mysql_fetch_row($res)){
  8.  
  9. echo "<td> <input type='radio' name='asistencia' id='asistencia' value='".$asis[0]."'><strong> ".$asis[1]."</strong></td>";
  10. }
  11. echo "</tr>";
  12. }
  13. echo "</tbody>
  14. </table>";
Add Comment
Please, Sign In to add comment