Unfortunately, the username and password you have entered do not match!

Registration

Unfortunately, this username is already taken!

Unfortunately, this e-mail address is already used!

Please retype the verification code.

All fields are required

Real multipage form built with RSFormPro

Welcome, Guest
Username Password: Remember me

Real multipage form built with RSFormPro
(1 viewing) (1) Guest
  • Page:
  • 1

TOPIC: Real multipage form built with RSFormPro

Real multipage form built with RSFormPro 2 years, 2 months ago #9010

Hi all,

I managed to build a real multipage form with RSFormPro.
See the example here: rsformsmultipage.joomlademo.nl/step1.html

Each page has its own URL, which is great for Google Analytcis funneling.
The data is stored in a separate database table (jos_registration in this example), NO data is added to the tables jos_rsform_submissions and jos_rsform_submission_values so no duplicate data is added to the database.

Each page is actually a separate form in which I store the submitted data in a table. Steps 2 and 3 add data to the same record, in this way the total data is completed step by step.

The last thankyou page is also a separate form that does nothing else as send an email and display the results.

I have added basic security in a way that HTML/PHP code is stripped from the data entry fields and it is also impossible to go directly to the step2, step3 and thankyou pages:

rsformsmultipage.joomlademo.nl/step2.html
rsformsmultipage.joomlademo.nl/step3.html
rsformsmultipage.joomlademo.nl/thankyou.html

If you are interested how I built this, just ask...

Re:Real multipage form built with RSFormPro 2 years, 2 months ago #9011

  • htenveen
  • OFFLINE
  • Fresh Boarder
  • Posts: 8
Hi Rene,

I am very interested how you build it, specially about the stored data in jos_registration.

Can you send it to me?


Herman.

Re:Real multipage form built with RSFormPro 2 years, 2 months ago #9031

I have added here a small example form that adds the form data to the database table jos_register while NOT adding the data to the default rsform tables.

Before you run this form, make shure you have created the database table in your Joomla database first. To do that, run the following SQL query inside phpMyAdmin:
CREATE TABLE `jos_register` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(100) NOT NULL,
`address` varchar(100) NOT NULL,
`postalcode` varchar(10) NOT NULL,
`city` varchar(100) NOT NULL,
`email` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;


Be advised that impoting this form into RSForm Pro only works if your Joomla database tables have prefix "jos_".

Download your rsform import here: www.renekreijveld.nl/downloads/rsformpro...re_data_in_table.zip
Attachments:
Last Edit: 2 years, 2 months ago by renekreijveld. Reason: Error while uploading attachment in this forum :-(

Re:Real multipage form built with RSFormPro 2 years, 2 months ago #9179

Can you please tell me how you did this?

The form doesn't really tell me how you accomplished this.

can you send information to atomicmatt@gmail.com

Re:Real multipage form built with RSFormPro 2 years, 1 month ago #9239

  • tkaboris
  • OFFLINE
  • Fresh Boarder
  • Posts: 7
r.kreijveld wrote:
Hi all,

I managed to build a real multipage form with RSFormPro.
See the example here: rsformsmultipage.joomlademo.nl/step1.html

Each page has its own URL, which is great for Google Analytcis funneling.
The data is stored in a separate database table (jos_registration in this example), NO data is added to the tables jos_rsform_submissions and jos_rsform_submission_values so no duplicate data is added to the database.

Each page is actually a separate form in which I store the submitted data in a table. Steps 2 and 3 add data to the same record, in this way the total data is completed step by step.

The last thankyou page is also a separate form that does nothing else as send an email and display the results.

I have added basic security in a way that HTML/PHP code is stripped from the data entry fields and it is also impossible to go directly to the step2, step3 and thankyou pages:

rsformsmultipage.joomlademo.nl/step2.html
rsformsmultipage.joomlademo.nl/step3.html
rsformsmultipage.joomlademo.nl/thankyou.html

If you are interested how I built this, just ask...

Hi,
I want to create multiple pages just like you did. can you be little more specific on how you did that? are you willing to help?

Re:Real multipage form built with RSFormPro 2 years, 1 month ago #9300

  • Oroshin
  • OFFLINE
  • Fresh Boarder
  • Posts: 4
Hi r.kreijveld,

Would also like to find out how to go about creating multiple-step forms. Could you email me andrew@oroshin.com

Thanks
Andrew

Re:Real multipage form built with RSFormPro 2 years ago #9527

r.kreijveld wrote:
Hi all,

I managed to build a real multipage form with RSFormPro.
See the example here: rsformsmultipage.joomlademo.nl/step1.html

Each page has its own URL, which is great for Google Analytcis funneling.
The data is stored in a separate database table (jos_registration in this example), NO data is added to the tables jos_rsform_submissions and jos_rsform_submission_values so no duplicate data is added to the database.

Each page is actually a separate form in which I store the submitted data in a table. Steps 2 and 3 add data to the same record, in this way the total data is completed step by step.

The last thankyou page is also a separate form that does nothing else as send an email and display the results.

I have added basic security in a way that HTML/PHP code is stripped from the data entry fields and it is also impossible to go directly to the step2, step3 and thankyou pages:

rsformsmultipage.joomlademo.nl/step2.html
rsformsmultipage.joomlademo.nl/step3.html
rsformsmultipage.joomlademo.nl/thankyou.html

If you are interested how I built this, just ask...


---------------------------------------------------------------------

I am extremely interested in how you did this, please - I have a client currently who would like this, as their form would otherwise be very long if on one page. Thank you.
desiree@kdcollc.com

Re:Real multipage form built with RSFormPro 2 years ago #9690

I'm interested in how you made that form. Is there any way possible you could make that form available for download, so I can look at your code and better understand it?

Re:Real multipage form built with RSFormPro 1 year, 11 months ago #9895

Hi Rene Kreijveld,

I am very interested to know how you build it. Did you hack the component or did you just use the component resources?

That URL that you put in this quoted post to download is broken. Could you put or URL, or send me by e-mail: acintra@sciere.com.br

Thanks for attention,
Alexandre

r.kreijveld wrote:
I have added here a small example form that adds the form data to the database table jos_register while NOT adding the data to the default rsform tables.

Before you run this form, make shure you have created the database table in your Joomla database first. To do that, run the following SQL query inside phpMyAdmin:
CREATE TABLE `jos_register` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(100) NOT NULL,
`address` varchar(100) NOT NULL,
`postalcode` varchar(10) NOT NULL,
`city` varchar(100) NOT NULL,
`email` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;


Be advised that impoting this form into RSForm Pro only works if your Joomla database tables have prefix "jos_".

Download your rsform import here: www.renekreijveld.nl/downloads/rsformpro...re_data_in_table.zip
Last Edit: 1 year, 11 months ago by Matsubara.

Re:Real multipage form built with RSFormPro 1 year, 11 months ago #10020

  • proexe
  • OFFLINE
  • Junior Boarder
  • Posts: 38
Hi, I am really interested in the form you have created, it shows that RSForms! Pro has alot more pertential. I would love if you would send me a copy of the script you used, i.e a copy a a backup of the form, I would then be able to work this round my needs,

Think you have done a brilliant job with this form.

Regards

Stewart

if you are not willing to forward a copy of the form backup then some screen prints would be great of how form was setup, my email address is stewart@proexe.net

Re:Real multipage form built with RSFormPro 1 year, 11 months ago #10038

  • proexe
  • OFFLINE
  • Junior Boarder
  • Posts: 38
Does anyone know where i can get this script from as need it urgently for one of our clients.

Regards

Stewart

stewart@proexe.net

Re:Real multipage form built with RSFormPro 1 year, 11 months ago #10099

I am sorry people for not replying earlier.

What I will do is setup a basic Joomla site with an example multipage form.
You can then download this Joomla example and study how it works.

I will have this ready today or tomorrow.
Please be patient...

Re:Real multipage form built with RSFormPro 1 year, 9 months ago #10328

  • komita
  • OFFLINE
  • Senior Boarder
  • Posts: 41
Have you ever set this up to look at? I would be very interested also. Thanks.

Re:Real multipage form built with RSFormPro 1 year, 9 months ago #10394

Hi all,

On the last dutch Joomladays event I did a presentation on how to setup multi-page forms with PDF output.
You can review my presentation here: slides.renekreijveld.nl
You can also download a fully working example of working multi-page forms with PDF output here: www.renekreijveld.nl/downloads/cat_view/...ublic-downloads.html

Thanks,
Rene

Re:Real multipage form built with RSFormPro 1 year, 9 months ago #10415

  • mrtn
  • OFFLINE
  • Fresh Boarder
  • Posts: 7
Thanks Rene

Your help is much appreciated!

Re:Real multipage form built with RSFormPro 1 year, 5 months ago #11307

  • cjseriy
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Excuse me for my english,

Can anyone help me with nearly the same task?
I need output to be a separate html file that will be stored on ftp in folder. I need the link generated to this file to be saved in Manage submission section.

Or
Output to be a word file.

Of course I would pay for the help if needed

Re:Real multipage form built with RSFormPro 1 year, 5 months ago #11341

Due to website change, the URL for the download link has changed. You can now download the demo here: www.renekreijveld.nl/download/cat_view/38-public-downloads

Re:Real multipage form built with RSFormPro 1 year, 4 months ago #11449

  • leoarce
  • OFFLINE
  • Fresh Boarder
  • Posts: 4
is the only way to install this is to install joomla from scratch? no way to install this in a working joomla install?

Re:Real multipage form built with RSFormPro 1 year, 4 months ago #11452

  • leoarce
  • OFFLINE
  • Fresh Boarder
  • Posts: 4
i followed the directions and all i get is an error on front-end of site.

Error
The page you are trying to access does not exist.
Please select a page from the Main Menu.




that's all it says for every page. i tried turning off sef urls and other stuff and i can't figure it out.

Re:Real multipage form built with RSFormPro 1 year, 4 months ago #11456

  • leoarce
  • OFFLINE
  • Fresh Boarder
  • Posts: 4
i don't even need the pdf thing at the end of the form submission.

all i really want is how the beginning of this demo form worked:

rsformmultipage.renekreijveld.nl/index.php

after selecting a radio button and inserting 2 names in the 2 fields then pressing the next button, you notice how the name was printed in the next page? how do i do that?

Re:Real multipage form built with RSFormPro 1 year, 4 months ago #11457

  • leoarce
  • OFFLINE
  • Fresh Boarder
  • Posts: 4
can someone tell me what i did wrong with the demo i set up?

rsform.learwebdesign.com

*the rest of the info that was here before was snipped/clipped, because i did it a different way, so this question is withdrawn*
Last Edit: 1 year, 4 months ago by leoarce.

Re:Real multipage form built with RSFormPro 10 months, 2 weeks ago #13174

I need to develop RSForm!Pro forms for a KG School. In brief:

1: 1st Form get Parents Data
2: 2nd Form Student Data (Many students for one parent)
3: 3rd Form Show all data
4: Confirm YES: Pay the tuition (Paypal) and see a PDF form to print/save. The School Admin will get the email for registration (Not the Form)
Confirm NO: Go back to the 1st Form and correct data then repeat step4.

There are students in pre-K and KG classes and one parent could have many children in pre-K, KG, or in both classes

5: 4th form: The school admin should be able to see the info for a particular Parent (with all his children data), or see a student data with all his/her Parent and any other student data from the same family.

Please let me know if this is some thing you would be able to do. I have RSForm!Pro, RSMail!, and RSEvents for this website.

Thanks

Re:Real multipage form built with RSFormPro 8 months, 2 weeks ago #13732

  • randi5
  • OFFLINE
  • Fresh Boarder
  • Posts: 4
Hi. I am interested in doing the exact same thing. Can you provide more information? Thanks. randi@mediasunrise.com

Re:Real multipage form built with RSFormPro 7 months, 3 weeks ago #13960

I've a problem : I can't get value of select list. Do you know how I could get it ? thank .

Re:Real multipage form built with RSFormPro 7 months ago #14187

  • service
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Hello,

your demo and files sound very useful, but I can't get it work.

The import of the SQL and the upload of the needed files is okay and also the import / installation of the demo-forms.

But on the frontend of joomla 1.5.23 I only get empty pages.

Do you have a new version or can give support on it.

Thanks for your answer.
Last Edit: 7 months ago by service.

Re:Real multipage form built with RSFormPro 3 months ago #15335

  • sinjin
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
Did you ever find an answer for this?

Re:Real multipage form built with RSFormPro 6 hours, 1 minute ago #0

Hello,
This is an automatically generated message.
We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you wish to receive our support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here: http://www.rsjoomla.com/support-policy.html.

Thank You!
PLEASE NOTE: This topic is NOT locked and you can add replies to it. Other users are free to reply as well. This message has been generated by a bot and has no effect on the topic whatsoever.
  • Page:
  • 1
Moderators: alex, alexp, octavian, bogdanc, andreic
Time to create page: 1.24 seconds
Feedback