Form script needed please

Does anyone know of a script that I can add to a form so that
when a person hits the submit button they are shown the contents of
the form including what they have entered into the text box
contents etc. The alert should say something like "Are you sure you
want to send this data" etc etc.

Not sure how you are processing the form but using a server
side scripting
language you could pick up the name from the form in a
session variable and
request it in the subject line of the email before it is
submitted.
Dave
"ducati1" <[email protected]> wrote in
message
news:fr4f4v$a46$[email protected]..
> Hi Dave. I have a contact form that comes through to me
as an email that
my
> staff use to send me invoices with drop down boxes for
client names etc. I
> would like the subject of the email to be the same as
whatever the staff
member
> types in the client name text field..
>

Similar Messages

  • XML form Help Needed Please

    Hello Everybody
    Here is my requirement.
    I am creating a XML form that will be set up with a approval workflow. My form has a combo box with several entries and whenever the user selects something from this box the approver should be changed accordingly.
    One more requirement is I should show this approver in the form.
    Can somebody please help me. I have seen the propeties in the XML form but not getting any clue on how to use them.
    Any help will be greatly appreciated.
    Thanks
    Renu

    Renuka,
    In KM you can use layout set in order define something such as: command groups by files, folders and links. Also you can define your layout controller, which columms you want to display, number of rows so on. Please, read about layout set, collection renderer and resource renderer.
    After, you can assign this layout to your folder or iview.
    Therefore when you open your form from this iview, you can use botton defined in this layout.
    As you can see by default there are two layout defined for news:
    NewsBrowser
    NewsExplorer
    Try to analyze it.
    Patricio.
    Message was edited by: Patricio Garcia

  • Form help needed, please

    Could someone please help me with this form? For some reason,
    it just won't send.
    I've included the FLA, SWF and ASP files located here:
    www.d-mag.org/testform/sent_out.zip

    Hi Paul,
    I presume that you are using the desktop version of Acrobat Pro to author the form.
    I will move this discussion to the PDF Forms forum so that the experts in the forum can answer your question.
    Please note that the Reader/Acrobat DC mobile apps (for iOS, Android, Windows Phone, etc.) have limited JavaScript support.
    JavaScript for Reader Mobile API Reference (iOS)
    You may be able to make the form work as you want in the desktop version of Adobe Reader/Acrobat Reader DC.  However, some functionality (e.g adding a sequence number to each PDF) will not work in the mobile apps due to the limited JavaScript support.  Sorry for the inconvenience.

  • Need help adapting David Powers PHP email form script please!

    Hi all,
    I'm fairly inexperienced with PHP and I'm trying to adapt the David Powers email form script from THE ESSENTIAL GUIDE TO DREAMWEAVER CS4 WITH CSS, AJAX, AND PHP.
    I've created a basic form so that visitors to the site can request a telephone call back from the site owner. The form asks the visitor for their name, telephone number and to select a time of day suitable for the telephone call to be made using radio buttons selecting between morning and afternoon.
    I'd like to achieve my goal with minimal validation error messages and would like to redirect to another page when a message is sent successfully. It is also important that in the spirit of the David Powers script I'm trying to work with, that it filters out suspect input, avoids email header injection attacks and blocks submission by spam bots.
    There may be a really simple solution to this since I don't want users to be able to enter an email address at all but I don't know enough to be able to figure it out just yet.
    I'd be grateful for any advice.
    See below for the code for the form including PHP so far...
    Thanks to everyone looking in in advance
    Karl.

    GEAtkins wrote:
    > I am using the redirect to a personal page from page 515
    of The Essential
    > Guide to DWCS3 in the following form:
    $_SESSION[MM_Username].php in the "if
    > login succeeds" field.
    Thank you for reminding me. There's a mistake in the book,
    which I
    discovered over the Christmas period, so forgot to send to
    friends of ED
    for the errata page.
    Don't use $_SESSION[MM_Username]. Use $loginUsername instead.
    It then works.
    David Powers, Adobe Community Expert
    Author, "The Essential Guide to Dreamweaver CS3" (friends of
    ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • I have created a form which needs to be completed once a week for 6 weeks. On completing week 1, weeks 2 - 6 are completed at the same time with week 1 information. please help?

    I have created a form which needs to be completed once a week for 6 weeks. On completing week 1, weeks 2 - 6 are completed at the same time with week 1 information. please help?

    Hello, thanks for replying.
    Yes they just copy to the next page, the fields are the same. The document is an observation to school lessons so it needs to be consistent but with different data on.

  • Help with web form script. PHP, CGI, Perl???

    anyone willing to help with a web form script? I have a form built, but cant seem to figure out the scripting! Should I be using Perl, CGI, PHP... What do I need to enable? I am a complete novice when it comes to scripts. Looking for a little friendly help.

    Here is a simple bit of PHP to stick in the page your form posts to. You would need to edit the first three variables to your liking, and add the html you want to serve afterwards:
    <pre>
    <?php
    $emailFrom = '[email protected]';
    $emailTo = '[email protected]';
    $emailSubject = 'Subject';
    $date = date('l, \t\h\e dS \o\f F, Y \a\t g:i A');
    $browser = $HTTPSERVER_VARS['HTTP_USERAGENT'];
    $hostname = $HTTPSERVER_VARS['REMOTEADDR'];
    $message = "$date\n\nAddress: $hostname\nBrowser: $browser\n\n";
    foreach ($_POST as $key => $value) {
    $message .= $key . ": " . $value . "\n";
    $mailResult = mail($emailTo,$emailSubject,$message,"From: $emailFrom");
    ?>
    </pre>
    This script will grab the server's date and the submitter's address and browser type. It will then list the name and value of each form field you have put on your form.
    Also, this script expects your form method="post".
    Lastly, you can offer alternate text later on in your html page based on the success of the above script with a snippet like this:
    <pre><?php
    if ($mailResult) {
    echo "Your comments have been received thank you.";
    } else {
    echo "There was an error. Please try again or contact us using an alternate method.";
    ?></pre>

  • Issue with Proportional Spreading Script. Please help !

    Hello,
    I have a requirement where I need to write a spreading script for a data form. On this form user will enter data at a parent level and what the script needs to do is spread the parent level input value to the 0 level members proportinally based on the values already existing in the 0 level members.
    Say the account member is “X”. All the other members on the data form in the POV/Page/Rows and Columns are 0 level members except for one that is Product which is in the Page
    Product
    - A
    - B
    I came up with this basic logic for the proportinal spread. Ofcourse I will need to include some logic with IF statement or something else to check if the cell belongs to product A or product B. For now, assuming the value is being input for A so now we need to spread that value at A to 0 level members proportionally.
    “X” = ((“X” -> (@CURRMBR(“Product”)*100)/(Previous Parent Value *100))*”X”->”A”
    Example with numbers:
    Current member cell value = 100 (0 level member for Product A)
    Previous Parent Value = 200 (Value for A)
    New Parent Value = 400 (User inputs this new value by overwriting the previous value 200)
    So, X = ((100*100)/(200*100))*400 = 200
    Now, the logic of the formula makes sense to me and would spread proportionally, but my question is how would we get the “Previous Parent Value to calculate the % as the user will overrite it with a new value = 400 before running the rule. So, we would not have 200 anymore and unless we have it we wont be able to know the % to do a proportional spread.
    I apologize if this is confusing, but please help me with your ideas on how can I achieve this proportional spreading script. I would really appreciate your inputs.
    Thanks!
    ~ Adella

    Hi,
    Have you not asked this earlier?
    Business Rule - Allocation Script Logic - Not working ! Please help.
    But in hindsight, I think there's a little problem with the script I had posted. This was what I suggested:
    SET UPDATECALC ON;
    FIX(“AccountMember”,”FY11”,”EntityMember”,”Local”,”Working”,”BU”,@LEVMBRS(“Product A”,0),@LEVMBRS(“Product B”,0),”Current”,@LEVMBRS(“Dept”,0),LEVMBRS(“Customer”,0))
    &Currmonth
    &Currmonth = @PARENT(Product)*(&Currmonth/@SUMRANGE(&Currmonth,@RELATIVE(@PARENT(@Currmbr(Product)),0)));
    ENDFIX;The problem I see here, every time the script calculates a product, the total of the siblings of the product changes and when it calculates the next product, allocation is done based on a different different total. To overcome this, you can try it this way:
    SET UPDATECALC ON;
    FIX(”FY11”,”EntityMember”,”Local”,”Working”,”BU”,@LEVMBRS(“Product A”,0),@LEVMBRS(“Product B”,0),”Current”,@LEVMBRS(“Dept”,0),LEVMBRS(“Customer”,0))
    &currmonth(
    @calcmode(bottomup);
    /*copy original values to somewhere else to make sure allocation base doesn't change*/
    "AccountMemberAllocBase"="AccountMember";
    Endfix
    FIX("AccountMember",”FY11”,”EntityMember”,”Local”,”Working”,”BU”,@LEVMBRS(“Product A”,0),@LEVMBRS(“Product B”,0),”Current”,@LEVMBRS(“Dept”,0),LEVMBRS(“Customer”,0))
    &Currmonth
    @calcmode(bottomup);
    &Currmonth = @PARENT(Product)*(&Currmonth->"AccountMemberAllocBase"/@SUMRANGE(&Currmonth->"AccountMemberAllocBase",@RELATIVE(@PARENT(@Currmbr(Product)),0)));
    ENDFIX;
    Cheers,
    Alp

  • Error in OLT while loadtesting EBS form scripts

    I am executing load tests through OLT. 3 of my scripts fail when executed with more than 1 user.
    It says "component can not be found" ..
    whereas it can execute the same script in OpenScript and through OLT with 1 user with 5-10 iterations.
    EBS forms script I recorded first time gave me similar error in OpenScript. After clicking button, it will load new form and fail on first text box which gets recorded.
    The way script is recorded is odd too. It does not activate the form window but has focused text box right away. I re-recorded the script and it started working fine..
    But I get same error in OLT tool now. I can attach the script and logs if you need.
    PLease advice, its urgent.
    Thanks for your attention.
    Edited by: user736845 on Nov 21, 2011 10:33 AM

    I am executing load tests through OLT. 3 of my scripts fail when executed with more than 1 user.
    It says "component can not be found" ..
    whereas it can execute the same script in OpenScript and through OLT with 1 user with 5-10 iterations.
    EBS forms script I recorded first time gave me similar error in OpenScript. After clicking button, it will load new form and fail on first text box which gets recorded.
    The way script is recorded is odd too. It does not activate the form window but has focused text box right away. I re-recorded the script and it started working fine..
    But I get same error in OLT tool now. I can attach the script and logs if you need.
    PLease advice, its urgent.
    Thanks for your attention.
    Edited by: user736845 on Nov 21, 2011 10:33 AM

  • Complex Script needed

    Hi - I have two things here I need help on.
    I have a form created in Adobe LiveCycle Designer 8 that has an add and delete row.  The rows have a check box called Sub to Sub for users if a job construction job was sent from a subcontractor to another subcontractor.  Next to that is the description, and then 2 more columns, One is called "Original Amount" and the other is called "Final Amount Paid."  The Original Amount and Final Amount Paid totals at the bottom of the page.  What I need to do is if a user clicks on the Sub to Sub check box, the amount they enter in the  Original Amount and Final Amount Paid does not get added into the Grand Totals at the bottom of the page.  Can someone provide me with a script that will do this?
    My second question - On the "Add Row" and "Delete Row," when it expands to a second page, the "Add Row" and "Delete Row" buttons do not work.  The user has to go back to the first page to add another row or delete another row.  Is there a way to have the add and delete row work on the second page so the user does not have to go back to the first page to add a row or delete a row?
    Any assistance would be appreciated.
    I use Adobe Livecycle Designer 8 and Adobe Acrobat 8.

    Hi Pratyunna D,
    As swapnil bhootwala in the above post you can use Unix and Windows line scripts.
    Please refer the SAP Data Services Technical Manual  for more information about the scripts.
    http://help.sap.com/businessobject/product_guides/sbods42/en/ds_42_tech_manuals_en.pdf#page=334
    Refer to the 3.7 Topic in the technical manual for more about scripts and its functions.
    http://help.sap.com/businessobject/product_guides/sbods42/en/ds_42_tech_manuals_en.pdf#page=1790
    Data Services Scripting:
    Data Services Scripting Language
    I hope this will help you out.
    Regards,
    Akhileshkiran.

  • Help needed please.. how do I remove my credit card from itunes? just discovered over $450 of charges when I looked at my email... Kids had no clue they were using our money and not their gift cards

    Help needed please.... I just discovered over $450 charges to my credit card from Itunes. The kids had no idea they were using our credit card and not their itunes gift cards and 4 year old just clicks on anything! I didnt save my credit card details so am a bit miffed at this... I cant find anywhere in itunes to remove it. Edit.. but not remove. Editing does not remove it.. HELP

    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact
    Accepted forms of payment  >  http://support.apple.com/kb/HT5552
    Changing Account Information  >  http://support.apple.com/kb/HT1918

  • Contact form not working :( Please Help...

    Hey guys,
    I am really in trouble with flash forms and need help please. Ive been trying to get a contact form working for a few weeks but have had no luck.
    Below is the code I am putting in to the flash form and php file.
    (this is the code I have put for the send Button)
    on (release) {
             if (name eq "" or subject eq "" or message eq "" or email eq "") {
                   stop();
             } else {
             loadVariablesNum("form.php", 0, "POST");
             gotoAndStop(2);
    (this is the code I have put for the clear Button)
    on (release) {
        name = "";
        subject="";
        message="";
        email="";
    (And this is the php file i created in dreamweaver and saved it as form.php)
    $to = "[email protected]";
       $msg = "$name\n\n";
       $msg .= "$message\n\n";
      mail($to, $subject, $msg, "Message From: Online client\nReply-To: $email\n");
    ?>
    I have uploaded the swf file and php file on the server but my form is still not working by sending the information to my email.
    This is the link where i got the code from http://www.flashvault.net/tutorial.asp?ID=103
    It would be really greatful if someone could help me please
    I look forward to your opinions and ideas.
    Thanks

    you should really check a tutorial using loadvars.
    and there's no hope for that php file.:
    try:
    $to = "youremailaddress @ yourserver.com"; // change this to your email address
      $email=$_POST["email"];
       $msg = $_POST["name"]."\n\n";
       $msg .= $_POST["message"]."\n\n";
      mail($to, $subject, $msg, "Message From: Online client\nReply-To: $email\n");
    ?>

  • I just downloaded a pdf form and need to open it and fill in blanks but can't figure ohow to find the file

    I just downloaded a pdf form and need to open it and fill in blanks but how can I find the file in Adobe so I can open it??
    Thank you in advance.

    Hi Steve Odem,
    If you downloaded the file from a web page, it most likely went into a Downloads folder on your computer. If you don't know where that folder is, the easiest thing to do may be to use the Find feature of Mac OS or Windows (whichever you use), to search for the PDF form. Once you know where the file ended up, you can easily navigate to that folder in Reader. (Choose File > Open in Reader, then navigate to the file in the Open dialog box.)
    Please let us know if you have additional questions.
    Best,
    Sara

  • I am new to Firefox; how do I set up for auto fill for the various forms that need the same info time and time again; thanks.

    I am new to Firefox; how do I set up for auto fill for the various forms that need the same info time and time again; thanks.

    Make sure that you do not run Firefox in permanent Private Browsing mode.
    *https://support.mozilla.org/kb/Private+Browsing
    *Tools > Options > Privacy, choose the setting <b>Firefox will: Use custom settings for history</b>
    *Deselect: [ ] "Always use private browsing mode"
    *Select : [X] "Remember search and form history"
    See also:
    *https://support.mozilla.org/kb/Form+autocomplete
    <i>[locking thread due to the age]</i>
    If you have further questions then please start a new thread.
    *[[/questions/new start a new thread]]

  • Parent/Action Script advise, please

    Hello
    I am posting to ask for some advice. I have Flash MX 2004.
    I have a series of thumbnails (Movie Clips) which seem to be
    arranged over two layers (layers 1 and 2). Layer 1 holds each
    individual thumbnail (movie clip) in several keyframes, so that
    with Layer 1 highlighted, when I click on frame 1 I can see
    thumbnail no. 1 on the stage, when I click on frame 2 I see only
    thumbnail 2 on the stage, when I click on frame 3 I see only
    thumbnail 3 on the stage, etc.
    I see no Action Script when I click through the frames:
    Layer 2, however, does appear to hold Action Script. Please
    see here:
    http://www11.brinkster.com/stevehigham/parent.html
    When I click on Layer 2 frame 1 I can see Action Script for
    the first thumnail:
    gotoAndStop(_parent._name);
    When I click on frame 2 I can see my second thumbnail, but
    the same script:
    gotoAndStop(_parent._name);
    When I click on frame 3 I can see my third thumbnail, but
    again the same script:
    gotoAndStop(_parent._name);
    I am trying to get my limited cognitive ability to grasp how
    the file works (I bought it as a template) so that I can change it.
    I wish to ask two questions. Does the gotoAndStop(_parent._name);
    mean that every time I click on thumbnail 1 I go to this file:
    --> _parent._name?
    And does it mean that every time I click on thumbnail 2 I
    also go to this file: --> _parent._name? Does it also mean that
    every time I click on thumbnail 3 I go to the same file: -->
    _parent._name?
    When I go to Ctrl + Enter and click on the thumnails
    (regardless of which one it is), I am always taken to the same
    place. Is it this script, the _parent._name that takes me there? If
    so, my second question concerns how can I change it - what is it in
    the script that I need to change - so that each thumbnail takes me
    to a different place?
    Many thanks for reading such a long message!
    Steve

    Hello kglad
    Thank you for your message.
    In relation to your comment:
    'you need to label your frame and you probably are supposed
    to load that swf into another swf'.
    How do I do that? If I create something new on my stage in a
    new layer in the first frame how to I change the Action Script so
    that when the thumbnail is clicked, I go to that particular frame
    in that particular layer?
    Thank you for your help.
    Steve
    Text

  • How to make a contact form script

    i need help in how to make a contact form script, and how to
    insert it into dreamweaver ugent

    Does your host support PHP? If so -
    http://sourtea.com/articles.php?ref=30
    Shane H
    [email protected]
    http://www.avenuedesigners.com
    =============================================
    COMING SOON - Infooki [unboxed]:
    http://infooki.sourtea.com/
    Web Dev Articles, photography, and more:
    http://sourtea.com
    =============================================
    Proud GAWDS Member
    http://www.gawds.org/showmember.php?memberid=1495
    Delivering accessible websites to all ...
    =============================================
    "alagie82" <[email protected]> wrote in
    message
    news:em6gmt$q2n$[email protected]..
    >i need help in how to make a contact form script, and how
    to insert it into
    >dreamweaver ugent

Maybe you are looking for

  • How can I add a Project to a Community?

    We are moving to Collab 4.1. Now I using the publicated colaboration API. (com.plumtree.collaboration.api) I succesfully created the Project. I used preferenceManager  to add "availableProjectIDs-commID"-s. But the new project on my community page do

  • Elements 10 organizer window position on screen.

    I am helping an elderly friend who uses Elements 10 on a MAC, his organizer window appears on screen with the top line/menu bar having File, Edit, find, View etc. off the screen at the top and I can't move it down to display properly. I am not very f

  • Weird cntrl character showing up within Java code

    Hi: I have a varchar field in a oracle table which has some special characters towards the end. if I do a select on that record field from sqlplus command, it doesn't show me the special character. But the java program I have sees it as ^Z. But if I

  • Data gatherer SUSE 6.2

    Hi there, I have opened a TAR with support on this but I thought that I would pose the question to others. I have installed 8.1.5.0.2 and the agent will start but data gatherer will not. I execute the command "vppcntl -start" and receive feedback "Th

  • Erased iMac now iphoto isn't there

    I erased my 2008 iMac and restored it with snow leopard because that was the only disc I had, now I dont have iphoto and imovie or garage band any longer.  Will Apple replace them or do I have to buy them from the Apple store? Or is there a way to ge