<%@ page import = "com.websystems.xml.*" %> <% //String filePrefix = "C:\\Files\\servers\\tomcat-3.3.1\\webapps\\ROOT\\drita\\"; //String filePrefix = Config.filePrefix; String filePrefix = "/home/virtual/site33/fst/var/www/html/drita/"; String fileName = filePrefix + "xml/faq.xml"; String view = request.getParameter("view"); String[] faqs = null; String newFaq = null; boolean add = true; if(view == null) { add = false; faqs = faq.getMessages(new WSDocument(fileName)); } else { newFaq = request.getParameter("new_faq"); faq.sendMessage(newFaq); } %> Drita Portal
<% if(!add) { for(int i = 0; i < faqs.length; i += 2) { %> Q: <%=faqs[i]%>
A: <%=faqs[i+1]%>

<% } } else { if(newFaq != null && !newFaq.trim().equals("")) { %> Your question has been sent to the administrator.
You will recieve response as soon as possible.

go back <% } } %>
Add your question: