|
| A R C H I V E D M E S S A G E |
|
Subject: Complex Form Action |
| Posted: 05/14/2004 at 11:55:07 pm |
| By: richard |
| Seth.
Is bizmail setup to show a filled out form in a new browser window so it can be printed out
If not, do you know where I can get a CGI script, I've seen it has been down from reading on the web, but no one mentions where the script can be downloaded.
Richard | |
|
|
Subject: Re: Complex Form Action |
| Posted: 05/15/2004 at 10:18:45 am |
| By: Seth Knorr |
| Yes, this script has that functionality. You need to open the "success cgi-bin" folder located in the downloaded zip file. The readme inside this folder will explain how to create a personalized success page from information submitted on the form.
Seth
| |
|
|
Subject: Re: Complex Form Action |
| Posted: 05/15/2004 at 1:33:43 pm |
| By: richard |
| So this won't email the filled out form, it will show the filled out form in a new window, right?
if so, should I rename your files so I still have the part where forms are emailed still intact? | |
|
|
Subject: Re: Complex Form Action |
| Posted: 05/17/2004 at 10:52:35 am |
| By: Seth Knorr |
| You realy need to read the readme file on how the features work and are setup. However to answer your questions.
1. The form results are sent to your email. (UNLESS YOU TURN THIS FEATURE OFF)
2. There is also a feature that will send the form poster to a success page after successfully filling out the form. This page can be personalized with the form data filled in on the form. (You need to open the "success cgi-bin" folder located in the downloaded zip file. The readme inside this folder will explain how to create a personalized success page from information submitted on the form. )
3. There is no need to rename files. The main readme file in the zip will walk you through installation.
Seth | |
|
|
Subject: Re: Complex Form Action |
| Posted: 05/17/2004 at 6:28:44 pm |
| By: richard |
| Isn't working dude, I tried, a highly skilled programmer tried. here's a temp link: http://www.acwebdesign.net/repair_new_1.html | |
|
|
Subject: Re: Complex Form Action |
| Posted: 05/17/2004 at 7:19:33 pm |
| By: Seth Knorr |
| This is the problem. You are trying to use the GET method you need to use POST.
YOU ARE CURRENTLY USING:
<form action="http://www.acwebdesign.net/cgi-bin/bizmail.cgi" method="get" name="repairform">
NEEDS TO BE:
<form action="http://www.acwebdesign.net/cgi-bin/bizmail.cgi" method="POST" name="repairform">
Seth | |
|
|