valuationbreak evenprofitcontributionforecastshiftqueuingbusiness analysis
accountbasbudgetBAS-I.Cshare valueshort salesinvestment
site mapform1
Browse All Question and Answer Items
<< < Page 271 272 273 274 275 276 277 278 279 280 > >>
Questions & Answers
Q: Everything seems to be working correctly except when I fill out the form, but leave out one of the required fields, Form1 correctly goes to your default page that says, "you didn't input all the info." There is a Return to previous page button, but when you press it, it does not return. It reenters my web address twice, then adds the form.php file at the end?
A: I gave it a test run and it works fine for me. One issue that may cause this is if you use query stings at the end of your urls ie something after a ? in the url.
Question and Answer Item 206 - Browse All Question and Answer Items
Q: How do I make the Project description box 5 or 6 lines high like in one of your demos?
A: This is a text area and the size can be set using the rows and cols attributes. You can see the source code for this in the Message field at https://bizpep.com/formsource.html . Also there are a couple of Form Code tutorial sites listed at https://bizpep.com/formcode.html that may be of interest.
Question and Answer Item 207 - Browse All Question and Answer Items
Q: How do I hide the hidden information that I want to pass to myself without the viewer seeing it.
A: You can unset the Display as HTML before Submission variable this will stop the form data being displayed to the submitter.
Question and Answer Item 208 - Browse All Question and Answer Items
Q: Is there a way to save my work? Not the php file, but the work I've done in creating the Form1 file in Internet explorer. I have had to start over a few times because I accidentally closed Internet Explorer thinking it was just a web page. Also, if I want to add categories to it later, do I have to start from the beginning? Isn't there a way to save it?
A: The processing code variables are saved when you click Save Variables (in the Required Section). For the form code you can simply copy the form code to a text editor ie Notepad and save it. If you save the Form Page Layout Code Only this is the code that determines the form layout and can be reused, see the Existing Form in the menu. You can also edit directly in the text editor if you want and then reuse it later.
Question and Answer Item 209 - Browse All Question and Answer Items
Q: I have checked the help file and can not find the solution to my problem, 2 things are happening. 1st. when I click on my continue button page one with all required boxes filled. I don't go directly to my page two, I go to the Required Field Missing for a Field on page two, should not I go to page two and given the opportunity to enter data in those boxes.
A: If you have a required field set in the processing code then it expects the field to be delivered to it when it is called, ie the first page is processed by the second page processing code so the required fields set in the second page processing code are those that relate to the page that calls it ie the first page. This process is followed through the pages ie each page calls the following page until the last page, which generally calls its self. If you what to have specific required variables in the last page that are not from previous pages you will need to set the last page to call a separate processing code so those variables can be checked. So basically you need to adjust your Required Field settings to match the page that is calling the processing code. I can always help when I know what is or is not happening.
Question and Answer Item 210 - Browse All Question and Answer Items