Hi Karen,
Thanks for the link, that helps a lot - though I'm still not completely clear.
For the index page, you can use a list of links:
<h3>GAD Folder</h3>
<ul>
<li><a href="index.php?option=com_chronocontact&chronoformname=form_1">Form 1</a></li>
<li><a href="index.php?option=com_chronocontact&chronoformname=form_2">Form 2</a></li>
</ul>
. . .
These links each take you to a separate ChronoForms form.
If the forms are all 'similar' then it may be better to use a single form and to use a 'switch' code to tell ChronoForms exactly what to display. This is very powerful but a bit hard to explain in a short post.
The link page would be like this:
<h3>GAD Folder</h3>
<ul>
<li><a href="index.php?option=com_chronocontact&chronoformname=main_form&form_id=1">Form 1</a></li>
<li><a href="index.php?option=com_chronocontact&chronoformname=main_form&form_id=2">Form 2</a></li>
</ul>
. . .
These both call the same form but include a 'form_id' variable.
In the form code you pick up the 'form_id' variable and use that to control what is displayed:
. . . some headings . . .
<?php
switch ( $_POST['form_id'] ) {
case 1:
// code for form 1
break;
case 2:
// code for form 2
break;
}
?>
. . . some footer html
This approach allows you to write one form and one set of code to control a whole range of forms. This takes a little more thought up fornt but is much easier to create and maintain.
Bob