Setting up DW so a submitted form goes to email and PayPal??????

I build and sell wood products on my website. I would like a visitor who is interested in haveing custom work done fill out a form with their choices of wood, finishes, sizes, etc. The idea is if they want the "base product", they can click on Paypal's "add to cart" (which adds the base price of the product to their cart)then if they want any accessories added for an additional charge, I have listed each accessory and put an "add to cart" button next to each one. So, for each accessory they want, an additional charge is added to their cart total. I do not have e-comerce in D.W. as I am just starting out.
At this point I have set up a page and inserted a form. Inside the red dashed box, I have put form info such as name, address, etc. List boxes for choices of sizes, wood species, finishes, etc. I have gone into "Tag Inspector" and chose "onsubmit" to redirect to the home page in case a vsitor wants to continue shopping. Upon "submit", I would also like to receive an email with all the form information list.
If you know of a better/easier way to do this...PLEASE TELL ME
Here are my issues: (sorry, more than one)
How do I configure the form to go to my email? I googled this question and found information to set up a "sendresults.php" file with a bunch of code but that didn't work and I haven't a clue why.
I can't insert the "Add to Cart" button from PayPal into the form. It screws up the whole page.
Thank you all for your help.
Bill

Ideally, your product options should be integrated into your shopping cart system where they are stored in a product database.
https://merchant.paypal.com/cgi-bin/marketingweb?cmd=_render-content&content_ID=merchant/w p_standard
PayPal alone is not robust enough to handle more than a couple of product options such as size and colors.
Have you looked at any 3rd party shopping carts yet? 
Nancy O.
Alt-Web Design & Publishing
Web | Graphics | Print | Media  Specialists 
http://alt-web.com/
http://twitter.com/altweb

Similar Messages

  • My company phone was set up by our IT dept., he used his email and password, now i can't except some downloads. What do i need to do to change these to my account?

    my company phone was set up by our IT dept., he used his email and password, now i can't except some downloads. What do i need to do to change these to my account?

    It is a company phone, don't mess with it unless you get authorization from the company. The activation, and I suspect Find My Phone are all tied to the company for a reason. Unless of course you don't value your job.

  • Help! My form which requires email and zip code is arriving without data. How is that possible?

    An HTML form design with Dreamweaver CS5 requires the zip code and email to be entered prior to Submitting the form. We tested the form prior to going live and it worked great. The Zip Code and Email are required entries. Today, we received our first completed form from a customer and it worked and looked great. The problem is ... we have also received two forms that are blank. No data results at all; no email or zip code either. I don't know how this can be. The form cannot Submit unless the email and zip code are present.
    Suggestions?
    This is the webpage that has the form (scroll toward the bottom to view it).
    http://www.catchaghostparanormalequipment.com/paranormaltriggerprops.html

    The PHP code is:
    <?php
    //--------------------------Set these paramaters--------------------------
    // Subject of email sent to you.
    $subject = 'Trigger Prop Contact Form';
    // Your email address. This is where the form information will be sent.
    $emailadd = '[email protected]';
    // Where to redirect after form is processed.
    $url = 'http://www.catchaghostparanormalequipment.com/confirmation.html';
    // Makes all fields required. If set to '1' no field can not be empty. If set to '0' any or all fields can be empty.
    $req = '0';
    // --------------------------Do not edit below this line--------------------------
    $text = "Results from form:\n\n";
    $space = ' ';
    $line = '';
    foreach ($_POST as $key => $value)
    if ($req == '1')
    if ($value == '')
    {echo "$key is empty";die;}
    $j = strlen($key);
    if ($j >= 40)
    {echo "Name of form element $key cannot be longer than 40 characters";die;}
    $j = 40 - $j;
    for ($i = 1; $i <= $j; $i++)
    {$space .= ' ';}
    $value = str_replace('\n', "$line", $value);
    $conc = "{$key}:$space{$value}$line";
    $text .= $conc;
    $space = ' ';
    mail($emailadd, $subject, $text, 'From: '.$emailadd.'');
    echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL='.$url.'">';
    ?>
    The form code is:
    <form action="result.php" method="post" name="Trigger Prop Form" id="Trigger Prop Form">
          <p><strong>Trigger Prop Quote/Information Request Form</strong></p>
      <p><span class="welcomesmaller">Trigger props can be sold with or without accessories. You can select more than one item. </span></p>
      <p><span class="props" id="sprycheckbox13">
        <input type="checkbox" name="Antique Style Tin Train Engine" id="Antique Style Tin Train Engine" />
        <label for="Antique Style Tin Train Engine">Antique Style Tin Train Engine</label>
    </span></p>
      <p><span class="props" id="sprycheckbox14">
        <input type="checkbox" name="Tin Merry-Go-Round" id="Tin Merry-Go-Round" />
        <label for="Tin Merry-Go-Round">Antique Style Tin Merry-Go-Round</label>
    </span></p>
      <p><span class="props" id="sprycheckbox15">
        <input type="checkbox" name="Period Lantern" id="Period Lantern" />
        <label for="Period Lantern">Period Lantern</label>
    </span></p>
      <p><span class="props" id="sprycheckbox16">
        <input type="checkbox" name="Bisque Head China Dolls" id="Bisque Head China Dolls" />
        <label for="Bisque Head China Dolls">Bisque Head China Dolls (Variety Similar to Photos)</label>
    </span></p>
      <p><span class="props" id="sprycheckbox17">
        <input type="checkbox" name="Grungy Primitive Rag Doll" id="Grungy Primitive Rag Doll" />
        <label for="Grungy Primitive Rag Doll">Grungy Primitive Rag Doll</label>
    </span></p>
      <p><span class="props" id="sprycheckbox18">
        <input type="checkbox" name="Pocket Watch" id="Pocket Watch" />
        <label for="Pocket Watch">Pocket Watch with Chain</label>
    </span></p>
      <p><span id="sprycheckbox1">
        <input type="checkbox" name="Pirate Gold Coins" id="Pirate Gold Coins" />
        <label for="Pirate Gold Coins" class="props">Pirate Gold Coins</label>
    </span>  </p>
      <p><span class="props" id="sprycheckbox2">
        <input type="checkbox" name="Indian Artifacts with Rabbit Hide" id="Indian Artifacts with Rabbit Hide" />
        <label for="Indian Artifacts with Rabbit Hide">Indian Artifacts with Rabbit Hide</label>
      </span></p>
      <p><span class="props" id="sprycheckbox7">
        <input type="checkbox" name="Prop Pirate Gun" id="Prop Pirate Gun" />
        <label for="Prop Pirate Gun">Prop Pirate Gun</label>
    </span></p>
      <p class="props"><span class="props" id="sprycheckbox4">
        <input type="checkbox" name="Prop Pirate Sword" id="Prop Pirate Sword" />
        <label for="Prop Pirate Sword">Prop Pirate Sword</label>
    </span></p>
      <p class="props"><span class="props" id="sprycheckbox5">
        <input type="checkbox" name="Civil War Medals" id="Civil War Medals" />
        <label for="Civil War Medals">Civil War Medals</label>
    </span></p>
      <p class="props"><span id="sprycheckbox3">
        <input type="checkbox" name="West Lantern" id="West Lantern" />
        <label for="Western Style Lantern">Western Style Lantern</label>
    </span></p>
      <p class="props"><span class="props" id="sprycheckbox8">
        <input type="checkbox" name="Small Teddy Bear in Basket" id="Small Teddy Bear in Basket" />
        <label for="Small Teddy Bear in Basket">6" Small Teddy Bear in Basket</label>
    </span></p>
      <p class="props"><span class="props" id="sprycheckbox9">
        <input type="checkbox" name="Small Rag Doll in Basket" id="Small Rag Doll in Basket" />
        <label for="Small Rag Doll in Basket">6" Small Rag Doll in Basket</label>
    </span></p>
      <p class="props"><span class="props" id="sprycheckbox10">
        <input type="checkbox" name="Large Primitive Rag Doll in Basket" id="Large Primitive Rag Doll in Basket" />
        <label for="Large Primitive Rag Doll in Basket">Large Primitive Rag Doll in Basket</label>
    </span></p>
      <p class="props"><span class="props" id="sprycheckbox11">
        <input type="checkbox" name="Knitting Basket with Needles" id="Knitting Basket with Needles" />
        <label for="Knitting Basket with Needles">Knitting Basket with Knitting Needles</label>
    </span></p>
      <p class="props"><span class="props" id="sprycheckbox12">
        <input type="checkbox" name="Metal Needle Point Loom Doile" id="Metal Needle Point Loom Doile" />
        <label for="Metal Needle Point Loom Doile">Metal Needle Point Loom with Antique Doile</label>
    </span></p>
      <p class="props"><span class="props" id="sprycheckbox19">
        <input type="checkbox" name="Accessories" id="Accessories" />
        <label for="Accessories">Accessories (Chairs, Wagons, Buggy, Sleds, etc.)</label>
    </span></p>
      <p class="props"><span id="sprytextarea1">
        <label for="Custom Request">Custom Request, Questions, and/or Comments</label>
        <textarea name="Custom Request" id="Custom Request" cols="45" rows="5"></textarea>
    </span></p>
      <p class="props"><span id="sprytextfield2">
      <label for="Email Contact">Email Contact</label>
      <input type="text" name="Email Contact" id="Email Contact" />
      <span class="textfieldRequiredMsg">A value is required.</span><span class="textfieldInvalidFormatMsg">Invalid format.</span></span></p>
      <p class="props"><span id="sprytextfield3">
      <label for="Shipping Zip Code">Shipping Zip Code for Quote</label>
      <input type="text" name="Shipping Zip Code" id="Shipping Zip Code" />
      <span class="textfieldInvalidFormatMsg">Invalid format.</span><span class="textfieldRequiredMsg">A value is required.</span></span></p>
      <p>
        <input name="submit2" type="submit" id="submit" value="Submit" />
          <input type="reset" name="Reset" id="Reset" value="Reset Form" />
      </p>
      <p>  </p>
        </form>

  • How to: Secure pdf form that is emailed and later uploaded

    We have a pdf form that will be posted on our website.  Local college/university faculty will link to the form on their websites or just give students the link to our page.  Students will fill the form and it will be emailed to a faculty member from their specific school.  The faculty member then needs to review the form and select candidates to present for an internship.  At that point, they need to upload the form back to our server.
    This form will contain sensitive information and therefore needs to be secure during the filling, emailing, and uploading processes.  The faculty member receiving it needs to be able to access it as does the person on our end that will do the final reviewing after it is uploaded back to us.
    I have no idea how to even start.  I've created interactive forms but have never embedded one in an website.  The closest I've come is a recently created web application that filled a pdf form in the code-behind and then emailed it, but that didn't require any security.
    Any help will be appreciated.

    Yeah I kinda figured that... Really too bad. Seems lke it should be possible somehow. Anyway, do you all have any suggestions about the best way to combine a static form that is really just text fields and such (that comments and markup tools can be used in) with another page that is sections of narrative that would need to be able to flow?
    Or better yet, a way to draw lines on to a form without using the comment and markup function?
    I like your idea about connecting two forms - but I need to keep the final product as simple as possible. Once the user fills it out, they would be to be able to submit it and it show up as one file, even if that is just a flat file. I don't expect you all to tell me how to do this, but it would be nice to know its possible before I commit to the project and research. Thanks in advance.

  • Submitting form with 'jump menu' and PHP?

    I have a form that can reveal one of two question sets,
    depending on the
    setting of a drop-down list, e.g.,
    <select>
    <option>Set 1</option>
    <option>Set 2</option>
    </select>
    Up to this stage in the development of this page, I have
    solved this
    requirement by using an onchange event in the <select>
    tag to submit the
    form to itself. The PHP code in the head of the page
    evaluates the set
    selected, and then writes the page containing the 'selected'
    fields (either
    set1 or set2).
    But now, I also need to submit this form's data to the
    processing page! So,
    there are two competing functions here -
    1. Deciding which field set to display
    2. Processing the filled in fields by submitting the form to
    a second
    process page
    How can I get these two together on the same form?
    Or should I just use two separate form pages, and a
    javascript jump menu?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================

    Never mind, I figured it out. :-)
    mark
    > I have a page that contains a jump menu and an iframe. I
    use the jump menu
    > to load different pages into the iframe. Works fine in
    IE but will not work
    > in Firefox. Here's the code:
    >
    > <form name="form1">
    > <select name="odm"
    onChange="MM_jumpMenu('odmframe',this,0)">
    > <option value="/solutions/odm/blank.html">Choose a
    Product</option>
    > <option
    value="/solutions/odm/vpn.html">VPN/Firewall
    > appliance</option>
    > <option value="/solutions/odm/2100e.html">2100E
    Enterprise Class
    > Server</option>
    > <option value="/solutions/odm/4300e.html">4300E
    Enterprise Class
    > Server</option>
    > <option
    value="/solutions/odm/4300edp.html">4300EDP Enterprise Class
    > Server</option>
    > <option
    value="/solutions/odm/sc4100,html">SC4100</option>
    > <option
    value="/solutions/odm/2120.html">SA2120</option>
    > <option
    value="/solutions/odm/na1400.html">NA-1400</option>
    > <option
    value="/solutions/odm/sc6000.html">SC6000</option>
    > <option
    value="/solutions/odm/ecobay.html">Ecobay</option>
    > </select>
    > </form>
    > <iframe src="/solutions/odm/blank.html" id="odmframe"
    frameborder="0"
    > style="width:650px; height:500px;"></iframe>
    >
    > What do I need to do to get this to work in Firefox?
    > Thanks
    > mark
    >

  • Submitting form data to email

    Hello all,
    I'm really stuck here. And, In an effort to generate some
    sympathy to those who might get annoyed with people like me ;) I am
    just a stay at home mom that wants to do something fun on the side
    while helping my family out... at any rate, I'm self-taught and I
    don't quite understand the whole php, cgi, etc. thing. I've
    researched this topic but similar questions and their respective
    responses are too technical for me.
    So... I've created a simple informational website for someone
    (www.idoweddingsbylynda.com) and promised her a contact us form
    (remembering how easy it was to do in Frontpage, not realizing it
    wouldn't be as easy Dreamweaver) with the input being directed to
    her email.
    The contact us form I created is buried in the site at
    www.idoweddingsbylynda.com/contactus-temp.html. I've tried one
    script that I found online and called it "mail.php" - I have no
    idea how it works or anything, and when I click the submit button
    it just shows me the script as a web page.
    she is using godaddy as her host and it supposedly supports
    this action, although I don't see a cgi folder in there.

    I believe GoDaddy does allow the use of a formmail script.
    Why not email
    them and ask them which script they use and how to go about
    setting it up
    for your site? That would be the first approach you should
    take. You may
    find a script elsewhere, but GoDaddy may not allow the use of
    it.
    Nadia
    Adobe® Community Expert : Dreamweaver
    CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://www.csstemplates.com.au
    http://www.perrelink.com.au
    CSS Tutorials for Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/css.html
    "dflorentine" <[email protected]> wrote in
    message
    news:epl4d4$s2d$[email protected]..
    > Hello all,
    >
    > I'm really stuck here. And, In an effort to generate
    some sympathy to
    > those
    > who might get annoyed with people like me ;) I am just a
    stay at home mom
    > that
    > wants to do something fun on the side while helping my
    family out... at
    > any
    > rate, I'm self-taught and I don't quite understand the
    whole php, cgi,
    > etc.
    > thing. I've researched this topic but similar questions
    and their
    > respective
    > responses are too technical for me.
    >
    > So... I've created a simple informational website for
    someone
    > (www.idoweddingsbylynda.com) and promised her a contact
    us form
    > (remembering
    > how easy it was to do in Frontpage, not realizing it
    wouldn't be as easy
    > Dreamweaver) with the input being directed to her email.
    >
    > The contact us form I created is buried in the site at
    > www.idoweddingsbylynda.com/contactus-temp.html. I've
    tried one script
    > that I
    > found online and called it "mail.php" - I have no idea
    how it works or
    > anything, and when I click the submit button it just
    shows me the script
    > as a
    > web page.
    >
    > she is using godaddy as her host and it supposedly
    supports this action,
    > although I don't see a cgi folder in there.
    >

  • When Querying items it goes in working and does not open form

    We have R 12.1.1 and 11.1.0.7 on redhat 5.3 ( all 64 bit , seperate apps and db node installation)
    Today when users query items , the form goes in working and it does not open.
    Please tell me where to check and what to see to resolve this issue .
    please reply
    Regards

    I open oracle application R12 Dashboard from front end. I restart services on apps node and db node.
    This querying items issue is resolved but Concurrent processing , admin , forms , web tabs have cross signs on dashboard.What is the issue with CM/Admin/Forms/Web? Please elaborate more.
    even i restart all the services then these cross signs should be ok.Do you mean the application is working as expected but those components status show as down from OAM? If yes, please see these docs.
    OAM: Web Components Status: Shows Down Even When The System Works Fine [ID 419823.1]
    Web Components Status in OAM Shows All Down Even When the System Works Fine [ID 309271.1]
    OAM Reports 'Internal Concurrent Manager Found Node To Be Down.' When Node is Up. [ID 405375.1]
    Thanks,
    Hussein

  • Email and fax a form

    Hi ,
           how can we send a form output as email and fax ? How to do the config for this? Can you explain the process to be done?
    Rama.

    Hi,
    See following code :
    REPORT zmail_att NO STANDARD PAGE HEADING LINE-SIZE 200.
    DATA : BEGIN OF ITAB OCCURS 0,
    PERNR LIKE PA0001-PERNR,
    ENAME LIKE PA0001-ENAME,
    END OF ITAB.
    DATA: message_content LIKE soli OCCURS 10 WITH HEADER LINE,
    receiver_list LIKE soos1 OCCURS 5 WITH HEADER LINE,
    packing_list LIKE soxpl OCCURS 2 WITH HEADER LINE,
    listobject LIKE abaplist OCCURS 10,
    compressed_attachment LIKE soli OCCURS 100 WITH HEADER LINE,
    w_object_hd_change LIKE sood1,
    compressed_size LIKE sy-index.
    START-OF-SELECTION.
    SELECT PERNR ENAME
    INTO CORRESPONDING FIELDS OF TABLE ITAB
    FROM PA0001
    WHERE PERNR < 50.
    LOOP AT ITAB.
    WRITE :/02 SY-VLINE , ITAB-PERNR, 15 SY-VLINE , ITAB-ENAME, 50
    SY-VLINE.
    ENDLOOP.
    Receivers
    receiver_list-recextnam = 'XXXXX@X...'. --> EMAIL ADDRESS
    RECEIVER_list-RECESC = 'E'. "<-
    RECEIVER_list-SNDART = 'INT'."<-
    RECEIVER_list-SNDPRI = '1'."<-
    APPEND receiver_list.
    General data
    w_object_hd_change-objla = sy-langu.
    w_object_hd_change-objnam = 'Object name'.
    w_object_hd_change-objsns = 'P'.
    Mail subject
    w_object_hd_change-objdes = 'Message subject'.
    Mail body
    APPEND 'Message content' TO message_content.
    Attachment
    CALL FUNCTION 'SAVE_LIST'
    EXPORTING
    list_index = '0'
    TABLES
    listobject = listobject.
    CALL FUNCTION 'TABLE_COMPRESS'
    IMPORTING
    compressed_size = compressed_size
    TABLES
    in = listobject
    out = compressed_attachment.
    DESCRIBE TABLE compressed_attachment.
    CLEAR packing_list.
    packing_list-transf_bin = 'X'.
    packing_list-head_start = 0.
    packing_list-head_num = 0.
    packing_list-body_start = 1.
    packing_list-body_num = sy-tfill.
    packing_list-objtp = 'ALI'.
    packing_list-objnam = 'Object name'.
    packing_list-objdes = 'Attachment description'.
    packing_list-objlen = compressed_size.
    APPEND packing_list.
    CALL FUNCTION 'SO_OBJECT_SEND'
    EXPORTING
    object_hd_change = w_object_hd_change
    object_type = 'RAW'
    owner = sy-uname
    TABLES
    objcont = message_content
    receivers = receiver_list
    packing_list = packing_list
    att_cont = compressed_attachment.
    Reward points if helpful.
    Regards.
    Srikanta Gope

  • Forms Central - Distribute Form Embedded In Email

    Is there a way to embed the form in an email and distribute as a survey?
    thanks,
    Brea

    That makes sense. I sent it out with the link and it is working great. Thanks for following up. I appreciate it. Have a nice evening.
    Brea Schmitz
    The Koman Group | www.komangroup.com<http://www.komangroup.com/> | www.cityplacestl.com
    CREVE COEUR | CLAYTON |  SAN DIEGO
    P 314.993.5800 | D 314.787.2005 | F 314.787.1985
    Six CityPlace Drive, Suite 430
    St. Louis, MO 63141
                  INNOVATION. COLLABORATION. SOLUTIONS.
    P Please consider the environment before printing this e-mail

  • How to set a customer type when submitting a form

    Hello! How do I set a customer's 'Customer Type' when they submit a form? In other words, I have a form on my website and if a user completes and submits that form, I would like that user to be given a specific Customer Type.
    TIA

    You cant yet.
    Soon though.
    The output for these via liquid will be available in the release later today and hopefully the form aspects will be in the new future.

  • Numeric or value error when submitting form

    I have a form based of a stored procedure. The form has about 20 fields on it. For some reason the form only allows data entry on only about 10 of them. If I put data in any of the other 10, I get: "An unexpected error occurred: ORA-06502: PL/SQL: numeric or value error (WWV-16016)"
    I have looked everywhere to see what's going on. I checked the procedure to make sure its parameters are good. It takes takes all VARCHAR2's, so thats OK. I checked the fields in the form editor for validation, and none are being validated, so thats OK. I made sure all the fields are updatable and they are. I even checked the table to make sure that the data can go into the fields, even though I know that the error returned there would be through the procedure, not Portal. I am stumped. What am I missing?
    Rich

    Follow Up: While troubleshooting this, I filled in all the fields with one character each and the form submitted. I added characters little by little to each field until I got the error. It seems like Portal has a problem when I pass X amount of characters from a form. I say "Portal" because I thought this might be an OS parameter, but I get the same error in both Win2000 and Solaris.
    Any ideas where this setting is? Or how to change it?
    Rich

  • Submitting form via button click

    Hi, i have a following code and it doesnt work and i dont know why
    <jsp:useBean id="pageinfo" class="zrna.PageInfo" scope="session"/>
    <jsp:setProperty name="pageinfo" property="*"/>
    <html>
    <head>
    <script type="text/javascript">
         function clickEvent(form,md,wrkOn)
              form.mode.value = md;
              form.workingOn.value = wrkOn;
              form.submit();
         function m(form){return true;}
    </script>     
    </head>
    <form action="index.jsp" method=get >
         <input type="hidden" name="mode" value="">
         <input type="hidden" name="workingOn" value="">
         <input type="submit" value="Add" onclick="clickEvent(this.form,'add','Student')">
         <input type="submit" value="Alter" onclick="clickEvent(this.form,'alter','Student')">
         <input type="submit" value="Done" onclick="clickEvent(this.form,'general','')">
    </form>          
    So im trying to change jsp bean properties of pageinfo thru submiting form and it doesnt work. when button is clicked the page goes blank. What am i missing?

    is this page you posted "index.jsp"?
    Not sure offhand, but could the form submit before onclick fires? If so, change them to button types, not submit types.
    The bean has those named fields? Public get/set methods?
    Does useBean have to be this?
    <jsp:useBean id="pageinfo" class="zrna.PageInfo" scope="session">
    <jsp:setProperty name="pageinfo" property="*"/>
    </jsp:useBean>

  • Error message received submitting form via email - "Acrobat cannot connect to the server"

    Some of my users are unable to submit form data.  The forms are set up to be submitted via email and only a few of the users are effected.  They have installed the latest versions of both Acrobat and Adobe Reader.
    "Acrobat cannot connect to the server, but will automatically submit your form once the server is online.  You can check tracker for the status of this submission."
    "You have already submitted the data on this form and it is waiting to be sent.  Further changes are not allowed until the prior data is sent."
    I know that this question has been asked before, but there has not been a response.  This is very frustrating.
    Thanks for any help or sugesstions.

    I have this exact same error, but also have not yet found a workaround.
    Only sporatic users get the error, and I've been unable to duplicate it from my machine.  I am on Adobe Reader v 10.1.2.
    Actually I can get around the error if I were to downgrade to Adobe v9, but that is a bandaid fix - not really a secure answer.

  • Submitting Forms

    An individual submitted a form and then tried to resubmit the form with more information and was not able to.  Any ideas?  It was from the same email address and now the email button did not respond.

    Thanks Lucia.  I’ve received the form several other people without any problem.  Not sure what was going on with that particular person.  Thanks for the suggestions.  I appreciate your help.
    Best,
    June
    June L’Heureux, Office Manager
    Waterville Main Street
    44 Main Street, Suite 202
    Waterville, ME  04901
    Phone: (207) 680-2055
    Fax: (207) 680-2056
    <http://www.watervillemainstreet.org/> www.watervillemainstreet.org
    <mailto:[email protected]> [email protected]
    Upcoming Events:   <http://www.watervillemainstreet.org/events.php> www.watervillemainstreet.org/events.php

  • Submitting Forms via Email

    I have created an order form in LiveCycle that i wish to post on my website. I want my customers to be able to open the form directly from the site, fill it in, click submit, and for their form to be emailed directly back to me. I have tried a couple of different forms, however, when the customers click the submit button, nothing is ever sent, it will only ever try to save the document elsewhere, and this is not practical for my customers. I am convinced that i have set the form up correctly, and distributed it correctly in Adobe Acrobat, but it still does not work.
    Any help would be highly appreciated!!
    CraigM

    Unfortunately, I think that the only data structure you can get with Designer is XML. If you recast the form in Acrobat (form tools are under the TOOLS menu, not the FORMS menu (this one takes you to Designer), you should be able to select HTML as an output data format. The only reason that would be important is if you collected the data in cgimail or formmail. An example of HTML for a web form is given at "http://www.computing.vt.edu/internet_and_web/web_publishing/webmasters_toolkit/web_form_ma iler/quickstart.html". Yes, this is HTML, but you can do the same thing by including the hidden fields in a PDF form and submitting to the formmail server. You can not use this one as it only works for folks at VT, but it provides an example. You can check with your ISP provider to see if there is such a form service available to you.
    As sample form return from a HTML submit is as follows (from a different server than the VT.EDU one above):
    =======================================================
    Below is the result of your feedback form.  It was submitted by
    ([email protected]) on Thursday, July 29, 2004 at 21:31:37
    http://www.server???.net/ordsubmit.html
    Order:
    Name:    Home C. Name
    Address:    555 5th St
    City:    Anywhere, State  99999
    Phone:    (xxx) yyy-yyyy
    E-Mail:    [email protected]
    Subject:    Order Request
    Payment:    Credit
    Comment:
    Order Items:
    #    Code    Color    Size    Quantity    Cost    Item
    0    1311    white    king    5    35.00    Big_Foot_athletic_socks
    1    401    white    6X    3    42.00    Players_two-pack_briefs
    SubTotal:        77.00
    Tax:        3.47
    Shipping:        8.00
    Total:        88.47
    =======================================================
    If this suffices, then submitting your form as HTML data with the hidden fields will do the job.
    If that is not adequate, then at least just submit the data to you by e-mail (that will do for 80-90% of the time) while you work out how to submit to a web server. The XML or FDF files can be imported to the form file, giving you the same result as if the full form had been sent (and no extended rights are needed). With a little programming skill, or with the form, you can insert the data from the form to a database file (sorry, I have not done it, just know you can).
    I suggest you try to work things out in steps until you reach the final solution needed. Bill

Maybe you are looking for

  • Getting started with JSTL

    I'm trying to use JSTL with tomcat 4.0.6. I downloaded J2EE 1.4 and put the appserv-jstl.jar from that installation into my tomcat/common/lib directory. I included this line at the top of my JSP: <%@ taglib uri="http://java.sun.com/jstl/core" prefix=

  • Creating Oracle 11g Database Manually on ASM on 11g R2 Grid

    Hi: Earlier added this issue alongwith Grid installation. Only Jorg replied to me but could not find a complete solution. So thought of starting a new thread. Wanted to know if any one of you have successfully created Oracle Database Manually on ASM

  • Presets for photoshop CC

    From where i can download presets for photoshop CC.

  • Duplicate records in the Results of SAP Query thru SQVI

    Dear All, I formed a query and joined EKKO, EKBE, EKET & EKES tbls to fetch information on the PO Item-Qty, Delivery Dt., Vendor's Confirmed qty, etc. However, in the results I get repeated records. Pls advise the possible reasons for above. Rgds,

  • How to Transport of Indexes and Crawlers ?

    Hi Experts, We want to transport indexes and crawlers from dev to poc server. but not sure of any method. So, can anybody suggest me a method to transport the indexe and crawlers. Can somebody please help me in this matter ? Regards, Archana.