Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  2. <%@ page import="ph.edu.iacademy.message.Questions"%>
  3.  
  4. <table>
  5. <c:forEach var="question" items="<%=Questions.QUESTION_ARRAY%>" varStatus="ctr">
  6. <tr>
  7. <td><%=Questions.QUESTION_ARRAY[ctr.index]%></td>
  8. </tr>
  9. </c:forEach>
  10. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement