Example 17-37: XSQL page to post a reply to a forum topic

<?xml version="1.0"?>
<!-- EnterForumTopicReply.xsql: Form to post a reply on a topic -->
<?xml-stylesheet type="text/xsl" href="ForumStyle.xsl"?>
<page connection="xmlbook" xmlns:xsql="urn:oracle-xsql">
  <breadcrumbs>
    <xsql:include-xsql href="ForumTopicLookup.xsql"/>
  </breadcrumbs>
  <dataform target="TopicPostings.xsql" submit="Post Your Reply">
    <item type="hidden" name="id">
      <xsql:include-param name="id"/>
    </item>
    <item type="text" name="userid" label="Your Email">
      <xsql:include-param name="forumuser"/>
    </item>
    <item type="textarea" name="posting" size="60" label="Reply"/>
  </dataform>
  <data>
    <xsql:include-xsql href="TopicPostingsQuery.xsql"/>
  </data>
</page>