• 1

Read this first!

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 have an active subscription and wish to receive 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.

Thank you!

TOPIC: Real multipage form built with RSFormPro

Real multipage form built with RSFormPro 14 years 5 months ago #9010

  • renekreijveld
  • renekreijveld's Avatar
  • OFFLINE
  • Junior Boarder
  • Posts: 24
  • Thank you received: 7
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...
René Kreijveld, Joomla! specialist
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 14 years 5 months ago #9011

  • htenveen
  • htenveen's Avatar
  • 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.
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 14 years 5 months ago #9031

  • renekreijveld
  • renekreijveld's Avatar
  • OFFLINE
  • Junior Boarder
  • Posts: 24
  • Thank you received: 7
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:
René Kreijveld, Joomla! specialist
Last Edit: 14 years 5 months ago by renekreijveld. Reason: Error while uploading attachment in this forum :-(
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 14 years 4 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 This e-mail address is being protected from spambots. You need JavaScript enabled to view it
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 14 years 4 months ago #9239

  • tkaboris
  • tkaboris's Avatar
  • 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?
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 14 years 4 months ago #9300

  • Oroshin
  • Oroshin's Avatar
  • 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 This e-mail address is being protected from spambots. You need JavaScript enabled to view it

Thanks
Andrew
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 14 years 3 months 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.
This e-mail address is being protected from spambots. You need JavaScript enabled to view it
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 14 years 2 months 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?
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 14 years 2 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: This e-mail address is being protected from spambots. You need JavaScript enabled to view it

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: 14 years 2 months ago by Matsubara.
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 14 years 1 month ago #10020

  • proexe
  • proexe's Avatar
  • OFFLINE
  • Junior Boarder
  • Posts: 34
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 This e-mail address is being protected from spambots. You need JavaScript enabled to view it
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 14 years 1 month ago #10038

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

Regards

Stewart

This e-mail address is being protected from spambots. You need JavaScript enabled to view it
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 14 years 1 month ago #10099

  • renekreijveld
  • renekreijveld's Avatar
  • OFFLINE
  • Junior Boarder
  • Posts: 24
  • Thank you received: 7
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...
René Kreijveld, Joomla! specialist
The administrator has disabled public write access.
The following user(s) said Thank You: ssnobben

Re:Real multipage form built with RSFormPro 14 years 2 weeks ago #10328

  • komita
  • komita's Avatar
  • OFFLINE
  • Senior Boarder
  • Posts: 40
  • Thank you received: 1
Have you ever set this up to look at? I would be very interested also. Thanks.
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 14 years 6 days ago #10394

  • renekreijveld
  • renekreijveld's Avatar
  • OFFLINE
  • Junior Boarder
  • Posts: 24
  • Thank you received: 7
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
René Kreijveld, Joomla! specialist
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 14 years 2 days ago #10415

  • mrtn
  • mrtn's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 7
Thanks Rene

Your help is much appreciated!
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 13 years 8 months ago #11307

  • cjseriy
  • cjseriy's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 2
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
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 13 years 7 months ago #11341

  • renekreijveld
  • renekreijveld's Avatar
  • OFFLINE
  • Junior Boarder
  • Posts: 24
  • Thank you received: 7
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
René Kreijveld, Joomla! specialist
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 13 years 7 months ago #11449

  • leoarce
  • leoarce's Avatar
  • 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?
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 13 years 7 months ago #11452

  • leoarce
  • leoarce's Avatar
  • 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.
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 13 years 7 months ago #11456

  • leoarce
  • leoarce's Avatar
  • 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?
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 13 years 7 months ago #11457

  • leoarce
  • leoarce's Avatar
  • 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: 13 years 7 months ago by leoarce.
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 13 years 1 month 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
The administrator has disabled public write access.

Re:Real multipage form built with RSFormPro 12 years 11 months ago #13732

  • randi5
  • randi5's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 9
  • Thank you received: 1
Hi. I am interested in doing the exact same thing. Can you provide more information? Thanks. This e-mail address is being protected from spambots. You need JavaScript enabled to view it
The administrator has disabled public write access.
The following user(s) said Thank You: ssnobben

Re:Real multipage form built with RSFormPro 12 years 10 months ago #13960

  • piyaphong
  • piyaphong's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
  • Thank you received: 1
I've a problem : I can't get value of select list. Do you know how I could get it ? thank .
The administrator has disabled public write access.
The following user(s) said Thank You: ssnobben

Re:Real multipage form built with RSFormPro 12 years 9 months ago #14187

  • service
  • service's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
  • Thank you received: 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: 12 years 9 months ago by service.
The administrator has disabled public write access.
The following user(s) said Thank You: ssnobben

Re:Real multipage form built with RSFormPro 12 years 5 months ago #15335

  • sinjin
  • sinjin's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 1
  • Thank you received: 1
Did you ever find an answer for this?
The administrator has disabled public write access.
The following user(s) said Thank You: ssnobben

Re:Real multipage form built with RSFormPro 9 years 7 months ago #28790

Hi there - any way of re-upping the demo?!
The administrator has disabled public write access.
The following user(s) said Thank You: ssnobben

Real multipage form built with RSFormPro 8 months 1 week ago #42926

  • ssnobben
  • ssnobben's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 19
no download or demo or anything working here..?
The administrator has disabled public write access.
  • 1

Read this first!

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 have an active subscription and wish to receive 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.

Thank you!