10
Hey JMorris,
I solved a little part of my problem with Formulaire/Liaise Module.
Firts i unnistall Formulaire Module and install Liaise 1.22. When i make a new form and try to add more 2 options in a checkbox element, but with no success.
I change the language of my XOOPS for English, because my default language is Portuguese Brazilian. For my surprise i see a TextBox where we set how many options will add for the element.
When i use the language Portuguese Brazilian, the TextBox not appear and with English appear. I start to learn the file
"editelement.php" and I saw this:
function addOptionsTray(){
$t = new XoopsFormText('', 'addopt', 3, 2);
$l = new XoopsFormLabel('', sprintf(Qtde, $t->render()));
$b = new XoopsFormButton('', 'submit', Incluir, 'submit');
$r = new XoopsFormElementTray('');
$r->addElement($l);
$r->addElement($b);
return $r;
}In this function are 03 elements,
$t,
$l and
$b (TextBox,Label and Button). Just one of 03 aren't added to the element $r and it's the TextBox that not appear.
After the line
"$r->addElement($l);" i added
"$r->addElement($l);" and it solved my problem, the TextBox appear now when i use Portuguese Brazilian.
The most important is now. The submit methods of Liaise Forms are by e-mail and PM. I don't know what PM and we would like to make the forms store your data in my XOOPS DataBase.
I'll try to learn alone how to store in DataBase, but if someone could help me, thank you!