Hello. I using multipage form. I want to do on first page two button to chose, each one has different way to pages (first to page2 and second to page3) how to do it?
[attachment=0]Untitled.png[/attachment]
Hi estorus,
In the Form On Submit event you can use an Event Swtcher, add a little PHP to detect which submit button was uses then redirect the user to the appropriate page.
Bob
What little PHP do I need? =)))
Hi estorus,
What is the HTML for your two submit buttons?
Bob
I don't understand how to do it 😟
In the "Event switcher" and based on your buttons names:
<?php
if(!empty($form->data["button19"])){
return "first";
} else if(!empty($form->data["button20"])){
return "second";
}
?>
And here is how the event switcher works:
http://www.chronoengine.com/faqs/70-cfv5/5212-event-switcher.html
Regards,
Max
Max
ChronoForms developer...
Did you try ChronoMyAdmin for managing your Joomla database tables ?