Adding fields from two forms to an html page

Adding fields from two forms to an html page

Hi, 

I have a very simple html test page that works fine when only calling from one form, but I cannot figure out how to add field values from another related form to this table. Can I just modify the parameter "<%for each rec in testzoho" to include another form called testzoho2??  

The page below works for the first two fields that are in my testzoho form, but I am trying to figure out how to add 'newfield1' and 'newfield2' that exist in a form called  'testzoho2' to the table.  I know html and css, so that is not the problem, I just do not know the deluge scripting enough to know if this is possible and if so how to accomplish it.

Thanks for any help I can get.  

- Joe

htmlpage html_page()
displayname = "html page"
content
<%{%>    <table><%for each rec in testzoho
    {%>        <tr>
<td>
<%=rec.Email%>
</td>
<td>
<%=rec.Agent%>
</td>
<td>
<%=rec.newfield1%>
</td>
<td>
<%=rec.newfield2%>
</td>
</tr>    <%}%>    </table><%}%>