Survey Form Conditional Nav

W

W. Randy Rice

Developing a web-based survey form. If users answers yes to question 5 then
I want them to be directed to question 15. If no, then continue to question
6. I'm using a dropdown menu for the response to question five and passing a
numeric value to an .mdb file on the backend.

I did quite a bit of VBA programming several years ago, but I'm rusty. If
someone could point me in the right direction I'd sure appreciate it.

Thank you,
 
T

Thomas A. Rowe

You will need to use and process the form via server-side scripting. The scripting technology to use
will be based on what is supported by your web host.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
==============================================
Agents Real Estate Listing Network
http://www.NReal.com
==============================================
 
W

W. Randy Rice

Thank you. I believe PHP, Perl, and CGI are all supported. Can you tell me
what function(s) I might look for first? If I can get pointed in the right
direction I think I can muddle through the details.

Thanks very much,

Randy


--
W. Randy Rice, MSHA



Thomas A. Rowe said:
You will need to use and process the form via server-side scripting. The scripting technology to use
will be based on what is supported by your web host.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
==============================================
Agents Real Estate Listing Network
http://www.NReal.com
==============================================
 
T

Thomas A. Rowe

Suggest you look into using PHP, as CGI-Perl is old technology.

You can create the forms in FP, but you will have to write a custom form handler in PHP that would
take the input from the first form (question 1 thru 5) and then decide if the users should be
redirected to question 6 thru 14 or redirect them to question 15, etc.

--
==============================================
Thomas A. Rowe
Microsoft MVP - FrontPage
==============================================
Agents Real Estate Listing Network
http://www.NReal.com
==============================================


W. Randy Rice said:
Thank you. I believe PHP, Perl, and CGI are all supported. Can you tell me
what function(s) I might look for first? If I can get pointed in the right
direction I think I can muddle through the details.

Thanks very much,

Randy
 
Top