I'd like to create two pages using the same template. There are two fields : "Prenom" and "Nom". Each page must have differents values for them.
Something like that :
<_form action="get" >
<_create mwwrite="PERS-1" mwtemplate="Personne" mwfields="Nom, Prenom" />
<_input type="text" name="Nom" />
<_input type="text" name="Prenom" />
<_create mwwrite="PERS-2" mwtemplate="Personne" mwfields="Nom, Prenom" />
<_input type="text" name="Nom" />
<_input type="text" name="Prenom" />
<_input type="submit" value="submit" />
</_form>
If I use the same name for my inputs, it's impossible for FlexForm to know which one goes in which page.
And if I use a different name, for exemple "Nom2" and "Prenom2" for the second page, this will not fit with the fileds of my template.
Is there a way to solve this problem ? Maybe with the parsepost parameter ?
Thanks !