I need help coding a form

I need to code for a specific form, the only problem is i don't know much about coding for forms. here is the link to the form http://myenginebuilder.com/appointmentrequest.html any help would be appreciated

I need to code for a specific form, the only problem is i don't know much about coding for forms. here is the link to the form http://myenginebuilder.com/appointmentrequest.html any help would be appreciated

Similar Messages

  • I need to update Firefox, using Linux, but not a technie, so need help in step form please. Thanks

    I am using Suse Linux - am trying to upgrade Firefox to the latest version. I am not a techie so need help step by step. Thanks so much

    From http://suseroot.com/terms.php?term=Terminal
    To open a terminal, go to the KMenu -> System -> Terminal -> (pick one). The "Super User" terminal lets you operate as root. This is also possible from the others with a "su" command.
    Familiarise yourself by using the [http://www.novell.com/documentation/opensuse110/ PDF documentation] when seeking answers, or just use google like I did to find the above.

  • Need help with PHP form processor coding

    I posted my first question on this forum earlier today and got help quickly. I'm going to try again and see who can help me this time.
    I have a customer feedback form that I designed and I am using Spry validation on the fields and I'm use Recaptcha as well. Now I'm trying to get the form handler working. I know there are some canned procedures out there but I hate using too much code that I don't understand at all.  I'm sure my first attempt at PHP coding is horrible but we all have to learn. My processor is working in some areas but there are holes I don't know how to fill in:
    1. When I validate the Recaptcha input, if it was entered correctly, I go on to send an email to the appropriate person BUT how do I send them a message and get back to the form if the recaptcha validation fails and still have their entries in place?
    2. Assuming the recaptcha validated correctly, my procedure sends an email  and it writes the comments to a file for historical purposes. These parts seem to be working (by some miracle). Once I do this, I think I would like to open a little window to send the customer a confirmation message, have them click the box to confirm and close the window and then take them back to the feedback form but now have it be reset. I'm not sure how to do these steps.
    Does anyone have a SIMPLE example to accomplish these steps?
    Thanks much!!
    Donna

    It would be hard to give you substantive examples of how to accomplish your goals here without seeing your PHP code, but in general the following methods would work:
    1.  To return to the form with the fields populated, is easiest when the processing script and the form code are on the same page.  The idea is that when the form is not properly completed, you fall back into the form code and use the data from the posted values to repopulate the fields, e.g.,
    <input type="text' name="whatever" value="<?php isset($_POST['whatever']) { echo $_POST['whatever']; ?>">
    or
    <select name="whatever2">
    <option<?php if(isset($_POST['whatever2']) && $_POST['whatever2']=='this_option_value') { echo ' selected="selected"'; } ?>>this_option_value</option>
    </select>
    Each field is set to repeat the posted data (if the corresponding $_POST value is set - to avoid error messages when the page is first loaded).
    2.  You can place the confirmation message on the page with CSS that hides it.  When the form is submitted successfully, just set a variable that is used to show the previously hidden message, e.g.,
    Assume the following CSS -
    #message { display:none; }
    and the following HTML -
    <p id="message">Congratulations</p>
    and the fact that you have set a PHP variable called $success to be true when the form is successfully submitted, you would just modify the HTML like this -
    <p id="message"<?php if($success) { echo ' style="display:block"; } ?>>Congratulations</p>
    Make sense?

  • Need help coding redirect value for form...

    I have set up a form but would like to set the redirect to a resized 400x500px window "thankyou" page.
    Here is my deduction process, none of which has been successful:
    1. <input name="redirect" type="hidden" value="http://www.mywebsite.com/thankyou_formsubmit.html" />
    2. <input name="redirect" type="hidden" onbeforeeditfocus="MM_openBrWindow('http://www.mywebsite.com/thankyou_formsubmit.html','','width=400,height=500')" />
    3. <input name="redirect" type="hidden" value="('http://www.mywebsite.com/thankyou_formsubmit.html','','width=400,height=500')" />
    I should be able to manipulate just the redirect code to do what I want it to do. I don't think I need to go into my cPanel cgi data base.
    If anyone could shed some light on how I can do this, I'd really appreciate it!
    Thanks.

    Hi
    The redirect would be proceed in your form processing page not in your form input fields, although you could use a hidden input field to supply the redirect page name. (e.g. redirectpagename.php) to your processing script.
    PZ
    www.pziecina.com

  • Need help with PHP form with checkboxes, radio buttons and file attachment

    Hi guys,
    I'm having a nightmare with this PHP form where a user can fill it in, attach a doc/pdf and submit. After trying to sort it out with previous code I've used, I've stripped it out and think I should just start again in the hope you geniuses can help!
    Here is the HTML of contact.php:
    <form action="" method="post" name="contact" id="contact">
        <p>Job Title:*<br />
        <input name="position" type="text" /></p>
        <p>Nationality:*<br />
        <select name="nationality">
          <option value="">-- select one --</option>
          <option value="Afghan">Afghan</option>
          <option value="Albanian">Albanian</option>
          <option value="Algerian">Algerian</option>
          <option value="Zambian">Zambian</option>
          <option value="Zimbabwean">Zimbabwean</option>
        </select>
        </p>
        <p>Which country are you currently living in?*<br />
        <select name="country">
        <option value="">-- select one --</option>
        <option value="United Kingdom">United Kingdom</option>
        <option value="Afghanistan">Afghanistan</option>
        <option value="Africa">Africa</option>
        <option value="Zambia">Zambia</option>
        <option value="Zimbabwe">Zimbabwe</option>
        </select>
        </p>
        <label class="radio" for="checkRight">Yes/No question?</label><br />
        <input class="radio" type="radio" name="right" value="Yes" /> Yes
        <input class="radio" type="radio" name="right" value="No" /> No
        <input class="radio" type="radio" name="right" value="N/A" /> Not applicable
        <p>Yes/No question?<br />
        <select name="continue">
        <option value="">-- select one --</option>
        <option value="Yes">Yes</option>
        <option value="No">No</option>
        </select>
        </p>
        <p>Select your resorts:<br />
        Resort 1<input name="res1" type="checkbox" value="Resort 1" />
        Resort 2<input name="res2" type="checkbox" value="Resort 2" />
        Resort 3<input name="res3" type="checkbox" value="Resort 3" />
        Resort 4<input name="res4" type="checkbox" value="Resort 4" />
        Resort 5<input name="res5" type="checkbox" value="Resort 5" />
        Resort 6<input name="res6" type="checkbox" value="Resort 6" />   
        </p>
        <p>Don't send form unless this is checked:* <input type="checkbox" name="parttime" value="Yes" /></p>
        <p>Date of arrival: <input name="arrive" id="datepick" /><br />
        Date of departure: <input name="depart" id="datepick2" /></p>
        <script type="text/javascript" src="assets/scripts/datepickr/datepickr.js"></script>
        <link href="assets/scripts/datepickr/datepickr.css" rel="stylesheet">
        <script type="text/javascript">
        new datepickr('datepick');
        new datepickr('datepick2', {
        </script>
        <p>Name:*<br />
        <input name="name" type="text" /></p>
        <p>E-mail:*<br />
        <input name="email" type="text" /></p>
        <p>Telephone:*<br />
        <input name="telephone" type="text" class="ctextField" /></p>
        <p>Upload CV (Word of PDF formats only):<br />
        <input type="file" name="cv" class="textfield"></p>
        <p><input name="submit" value="Submit Enquiry" class="submitButton" type="submit" /><div style="visibility:hidden; width:1px; height:1px"><input name="url" type="text" size="45" id="url" /></div></p>
    </form>
    By the way, the date boxes work so excuse the Javascript in there!
    To prevent SPAM I've used a trick where there's a hidden URL field which must be left blank for the form to submit which you can see in the PHP.
    Below is where I'm at with the PHP which is placed above the header of contact.php...
    <?php
    if (array_key_exists('submit', $_POST)) {
        $position = $_POST['position'];
        $arrive = $_POST['arrive'];
        $nationality = $_POST['nationality'];
        $parttime = $_POST['parttime'];
        $depart = $_POST['depart'];
        $name = $_POST['name'];
        $email = $_POST['email'];
        $telephone = $_POST['telephone'];
    $to = "[email protected]";
    $subject = "Recruitment Application";
    $message = $headers;
    $message .= "Name: " . $_POST["name"] . "\r\n";
    $message .= "E-mail: " . $_POST["email"] . "\r\n";
    $headers  = "MIME-Version: 1.0\r\n";
    $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
    $headers .= "Reply-To: " . $_POST["email"] . "\r\n";
    $headers .= 'From: My Website <[email protected]>' . "\r\n";
    $message= "
    $url = stripslashes($_POST["url"]);
    if (!empty($url)) {
    header( 'Location: http://www.go-away-spam-robots.com' );
    exit();
    if (!isset($warning)) {
    mail($to, $subject, $message, $headers);
    header( 'Location: http://www.mywebsite.co.uk/sent.php' );
    ?>
    I would like to make pretty much all the field compulsory so if a field is left empty (other than the hidden URL field), a warning message is displayed next to that field.
    Also I would like the file upload field to attach to the email that is sent to me and have the results come through to me in a table format.
    Can anyone help me get my form working?
    Thank you and I hope to hear from you!
    SM

    Hi Nancy,
    Great stuff, thank you for the reply.
    I've managed to get the Formm@iler working and running as I need it to.
    The only thing I'm struggling with is when the user clicks submit, they are taken to a page of whatever results the form returned but it is just a white background with Times New Roman text.
    How can I have it so the user is taken to the form results in the websites' page layout?
    I tried sending them to a generic 'thank you' page by adding the following code but it just took them there whatever the results of the form so that's no good...! I have a feeling it's a bit more complicated than that...
    header( 'Location: http://www.nofussbus.co.uk/test/sent.php' );
    Thank you for your help!

  • Need help with designing form for exports

    Hi
    I am pretty new to designing form in adobe acrobat.
    I have adobe acrobat 9 standard with Adobe liveCycle Designer installed.
    There are couple of things I want to do.
    1.
    I would like to add a box where I can change the number (default is 1), and when I increase it, (for instance to two)
    then
    it will postulate the particular sections twice.
    For instance, I am taking two drugs right now, then I would like to increase the number of drugs to 2, so then for each drug
    I would enter appropriate information such as drug name, drug form, route of drug administration etcs
    I hope this is clear
    2.
    I am trying to export this in xml format so that only the ones where the user fills in in pdf form gets exported to xml format.
    I would like the boxes to have its own tag, for instance the drug name mentioned above can have a tag of <drugname></drugname>
    I know this is possible through changing the box's name in binding tab.
    What I am interested in is to add a tag for the section, like a header.
    For example, if I were to enter two drug information I want the first drug information to be exported to be
    <drug>
    <drugname>blah</drugname><drugform>1</drugform><drugroute>oral</drugroute>
    </drug>
    <drug>
    <drugname>drug2</drugname><drugform>1</drugform>
    <drugroute>ophthalmic</drugroute>
    </drug>
    how would I add <drug> </drug> for each drug?
    also, can I change the order of the tags??
    in the pdf form, if the drugname box is displayed later than drugroute box, then when I export it, it will display as
    <drugroute>oral</drugroute><drugname>blah</drugname>
    but I want to manually set the order of tags when exported.
    Sorry I asked so many questions
    I hope it is clear enough for you to visualize what I am trying to do
    Thank you so much

    1. You can certainly add sections for the number of drugs that the user specifies pr
    ovided that the form is set up the correct way to begin with. The drug information section must be wrapped in a subform (usually Poistioned) and that in turn must be wrapped in a flowed subform. Then the form must be saved as dynamic. If this information is all that is on the form then that shoudl be all you need to do. If th edrug section is in the middle of the form then you need to wrap the other parts of the form in a subform so they can be pushed down when we add the drug subforms. It can get confusing ...seeing the form amnd its structure would help to clarify.
    2. You canbnot change the names of tags on the fly but you can change their values. AS mentioned above, when you wrap the Drug information in a subform that subform name can be used as a tag in the XML. Then you could have a node with the tag (or an attribute) that names the drug in question. Something like this:
    <Drug Section>
         <Drug>
              <DrugName></DrugName>
              <Dossage></Dossage>
              <Supplier></Supplier>
         </Drug Subform>
         <Drug>
              <DrugName></DrugName>
              <Dossage></Dossage>
              <Supplier></Supplier>
         </Drug>
    </Drug Section>
    As mentioned earlier this is always easier to explain when you see it in context of your form.....if you want to send it to me at [email protected] I can get you started at least. Please include a description of your issue in the email
    Paul

  • Need Help With DW Form

    I’m new to coding calculations in forms. Any
    suggestions greatly appreciated. This is just a generic test form I
    designed in DW. I’m trying to figure out how to add the
    dollar value of radio group “sessionoption" to the dollar
    value of radio group sessionoption.”
    Somehow I have to post the sum of these two values into tag:
    <INPUT type="hidden" name="chargetotal" value=" ">
    This is for a simple order form that will eventually go to a
    gateway. I’m just trying to get the easiest method for
    creating this calculation (maybe a javascript). Even a reference to
    a tutorial would be helpful. Here is the code:
    <body>
    <form id="form1" name="form1">
    <p>
    <INPUT type="hidden" name="chargetotal" value=" ">
    <INPUT type="hidden" name="storename" value="000000">
    <input type="hidden" name="taxexempt" value="1">
    <input type="hidden" name="txntype" value="preauth">
    <input type="hidden" name="authenticateTransaction"
    value="true">
    <input type="hidden" name="responseURL" value="
    http://www.mystore.com/receipt.cgi">
    <input type="hidden" name="oid" value="webform1">
    <br />
    <br />
    <br />
    </p>
    <FORM
    action="https://www.mygatewaytest.com/lpc/servlet/lppay"
    method="post">
    <table width="100%" border="0">
    <tr>
    <td>
    Please Choose On Of The Following Consultation
    Amounts:<br />
    <br />
    <table width="314">
    <tr>
    <td width="306"><label>
    <input type="radio" name="sessionoption" value="20.00"
    id="sessionoption_0" />
    45 Minutes ($20.00)</label></td>
    </tr>
    <tr>
    <td><label>
    <input type="radio" name="sessionoption" value="15.00"
    id="sessionoption_1" />
    35 Minutes ($15.00)</label></td>
    </tr>
    <tr>
    <td><label>
    <input type="radio" name="sessionoption" value="10.00"
    id="sessionoption_2" />
    25 Minutes ($10.00)</label></td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    <table width="100%" border="0">
    <tr>
    <td><br />
    Please choose one of the options for a recording of your
    consultation:<br />
    <table width="200">
    <tr>
    <td><label>
    <input type="radio" name="audiooption" value="5.00"
    id="audiooption_0" />
    postal mail ($5.00)</label></td>
    </tr>
    <tr>
    <td><label>
    <input type="radio" name="audiooption" value="3.00"
    id="audiooption_1" />
    email ($3.00)</label></td>
    </tr>
    <tr>
    <td><label>
    <input type="radio" name="audiooption" value="00.00"
    id="audiooption_2" />
    none</label></td>
    </tr>
    </table>
    </td>
    </tr>
    </table>
    <br />
    <label>
    <INPUT type="submit" value="Continue to secure payment
    form">
    <br />
    <br />
    </Form>
    <br />
    <br />
    <br />
    <br />
    </body>

    I thought this online version of the form might help:
    http://www.lifeleap.org/CL5/oforms/test2.shtml

  • Need help on how forms developer is used

    to everyone:
    im actually new at forms developer 2000,at really wondering how to use it though i have a background in SQL.If you have any data that you can share to me explaining the whole environment of Developer 200 please send it to me. Any help is greatly appreciated.
    Thank you...
    Cyrus

    This link will help: http://technet.oracle.com/docs/products/forms/doc_index.htm
    You need to register with technet to get access.

  • Hello everbody - i need help please with forms

    hi
    i am new in forms
    and i have a project to do
    i learn a lot and read oracle books about forms but in the many time it didnot help alot when i try to build and write scripts or procedure or triggers.
    i would like to ask a little help
    if anyone can help me with links or a web site that i can download form FMB file so i could run them and learn from its scripts_ and
    how to build form in the best way
    some of my problem are:
    - how to call a reports from a form with a button
    - how to work with date, hoe to calc the hours between two dates
    - i have built a query and i need to find the number of the rows (and the summary with count didnot work coz all the items aren't numbers
    thanks alot
    hope to get some information

    Did you take a look at this?
    regards

  • Portfolio site, need help with contact form

    Hi,
    Im a graphic designer turned web designer student. I dont know A LOT of flash, but im learning more as time goes by in and out of school. I currently redid my portfolio website, before it was more of a design taken into dreamweaver and uploaded. Now everything is not completely done, but im doing the site in flash.
    www.Nikdesigns.com, if anyones interested...
    but im trying to set up a really basic contact page. I have a name/email and message input text boxes and a submit button so far. Is there anyway someone can explain to me exactly what code I need, and what I need to do to be able to set this up correctly? Or link me a good tutorial?
    I understand flash needs a php to send the info out and comunicate with, but other then that im lost. What actionscript? and what keyframe?
    flash is so frustrating =/ someone please help, lol.

    If your contact page is just 1 of the many pages in your site, I'll recommend you write it in HTML/PHP/JSP.
    There are many cases when Flash/AS is the efficient tool to get jobs done. But just my humble opinion, I think in this case you'll be more efficient to construct the contacts page with mark-up languages.
    Of course, it is possible to do it in Flash/AS and not difficult. I just have 1 question before I go off and try:
    When an user submits the form, how do you wish to receive it? As an email in your inbox? Store it in a database? Or elsewhere?
    Cheers,

  • Need Help Please email form

    Hi,
    Can someone please help me out on this. I created a email form and what I want to do is add a coupon after you submit your info.
    What I'm thinking is people fill out the form they hit the submit button info gets sent and then a page opens up with the coupon to download.
    What kind of code do i need to add.
    here is the link http://www.tmsgraphics.net/simplecontactformagape/index.html
    Thanks!
    Tom

    Switching to html when you have your form in flash is wierd.  I would simply use if statements.
    I won't code it for you because it is so easy.  Make an mc called coupon in your fla.
    onSubmit
    send info with send and load  to server
    on load
    if a returned variable is true coupon form is visible
    else coupon form is false
    onSubmit coupon
    send info with send and load to server
    If you use a html popup your coupon may never get viewed.
    Javascript may be off or popup blockers on.

  • Iscripts - Need help creating a form in one

    I am confused about delimiting in iscripts. I need to create the fiollowing form:
    In iscript named IScript1
    in function: buildform
    buildform has these two inputs, firstname and lastname
    the action of the form is also in iscript1 function getinputs
    iscript getinputs will just print out the firstname and lastname
    Could I get some help with this?
    Thanks, Allen Cunningham

    Your site is running on an Apache server, so it definitely doesn't support ASP. Apache frequently supports PHP, but I couldn't tell from the headers sent by your server whether it's supported on your site.
    I suggest that you contact BT Business support to see if they offer a formmail script. Most hosting companies do. The support pages should describe how to set it up.

  • Need help in smart forms

    Hi,
       I dont know how to create the smartforms. Could anyone help me out in creating smartforms and i want a step by step procedure of creating a complete smart form.
    thanks,
    Shiva shekar k

    Hi,
    These are the following links.
    for Smartforms material
    http://www.sap-basis-abap.com/sapsf001.htm
    http://www.sap-press.com/downloads/h955_preview.pdf
    http://www.ossincorp.com/Black_Box/Black_Box_2.htm
    http://www.sap-img.com/smartforms/sap-smart-forms.htm
    http://www.sap-img.com/smartforms/smartform-tutorial.htm
    http://www.sapgenie.com/abap/smartforms.htm
    How to trace smartform
    http://help.sap.com/saphelp_47x200/helpdata/en/49/c3d8a4a05b11d5b6ef006094192fe3/frameset.htm
    http://www.help.sap.com/bp_presmartformsv1500/DOCU/OVIEW_EN.PDF
    http://www.sap-img.com/smartforms/smart-006.htm
    http://www.sap-img.com/smartforms/smartforms-faq-part-two.htm
    Re: Need FAQ's
    check most imp link
    http://www.sapbrain.com/ARTICLES/TECHNICAL/SMARTFORMS/smartforms.html
    step by step good ex link is....
    http://smoschid.tripod.com/How_to_do_things_in_SAP/How_To_Build_SMARTFORMS/How_To_Build_SMARTFORMS.html
    Thanks,
    Sankar M

  • Need help with a form calculation

    I am trying to create a form in Acrobat that will support a calculation of percentages. I have the
    following formula:
    if (a1.value == "" || a1.value == "" && b1.value == "") {c1=0} else {b1/a1}
    The percentage is not calculating and is remaining at 0% when numbers are entered on the form. I am trying to avoid the error messages we receive if we just enter the basic calculation in to the simplified (because some of the cells may have a value of 0).
    Can anyone help?

    Try this:
    // Get the field values
    var v1 = getField("a1").value;
    var v2 = getField("b1").value;
    //. Perform the calculation
    if (v1) {
        event.value = v2 / v1;
    } else {
        event.value = 0;
    Edit: corrected typo

  • Need Help in Adobe Forms

    Save Environment. Save Yourself.
    Hi Experts!!
    I am very new to Adobe forms and am doing hands on using some tutorials. However, though I searched a lot, I didn't get help in some points. 
    1. What is the significance of Accessibility in Palettes? When should we go for Header Row, Table, Body Row etc.?
    2. I do not have Body Pages tab (using 6.0) but have Design View. Hope both are same. Please confirm.
    3. I feel the difference between Positioned and Flowed is about the subform being static and dynamic. But whenever I change some subform to Flowed, the fields are becoming misplaced. In other words, I made 2 fields side by side and both wrapped in a subform. When I change content to Flowed..both are appearing one below the another. Why so? How to rectify it?
    4. Sometimes I am unable to shift the fields anywhere. As in, Layout is fixed and I couldn't move them from their positions. Or I can not minimize or maximize the subform layout too. Why so?
    Kindly help me!! Thanks a lot!!
    _ i'm not an Environmentalist. I'm an Earth Warrior.

    Hi Srinivas,
    I think I can give you some info for some of your questions.
    1. What is the significance of Accessibility in Palettes?When should we go for Header Row, Table, Body Row etc.?
    2. I do not have Body Pages tab (using 6.0) but have Design View. Hope both are same. Please confirm.
    3. I feel the difference between Positioned and Flowed is about the subform being static and dynamic. But whenever I change some subform to Flowed, the fields are becoming misplaced. In other words, I made 2 fields side by side and both wrapped in a subform. When I change content to Flowed..both are appearing one below the another. Why so? How to rectify it?
    <Sai> This similar to Grid & flowed layout in Webdynpro, if its flowed which mean all the elements in that subform are place one after another it has hot 2 option top to bottom which mean alla are just placed vertically other is western text where the elements are placed one after the other from left to right. where as in positioned layout you can specify the X&Y coordinates and the element is sticked to that p[osition</Sai>
    4. Sometimes I am unable to shift the fields anywhere. As in, Layout is fixed and I couldn't move them from their positions. Or I can not minimize or maximize the subform layout too. Why so? <sai>This is depending on the layout properties of the immediate parent subform and then its parent subform. and if the subform's height is Auto</Sai>
    Thanks for som of the your other queries which I never worked on got a change to focus and dig something new..
    Cheers,
    Sai

Maybe you are looking for