Submitting Form with MySLQ database...

I need to set my form through a MySLQ database but I don't
know how. My host sent me this Formmail:
http://www.dtheatre.com/scripts/formmail_doc.php
(download:
http://www.dtheatre.com/scripts/formmail_files/formmail.v50.zip
I saved it in my website root folder but I don't know how to
set the php form with my html form. ...There is a demo included,
but doesn't help.
Please help me!!
Thanks in advance!!

Form mail scripts send form contents via email. It sounds
like you want to just insert data from the form into a database.
Just use the build in DW Insert Record behavior.

Similar Messages

  • Do I gee a copy of submitted forms with the free account?

    Do I gee a copy of submitted forms with the free account?

    Hi;
    Using the Free account you can view the submitted data and export it to Excel, PDF or CSV (the data is in a table format).
    Email Notifications, where an email comes to you each time someone submits the form is a paid level feature.  Another Paid level feature is "Download Response as PDF" which allows you to save/download a PDF version of the filled out form that looks like the original.
    Thanks,
    Josh

  • Submitting form with attachments.

    Hi,
    I have a simple need. I am stucked in it. What i need to do is:
    Step 1: User1 starts opens a pdf form inside LC Workspace, fill it, attach files (Reader Extended) and then submit it.
    Step 2: User2 receives the filled form with attcachments. Can view attachments and save them in repository.
    I am stucked at step 1. User is able to fill the form, add attachments but can't submit it. If I am not enabling the Reader Extensions for attachments (Disabling functionality to attach files) then it works fine. But when using with attachments option, it fails. It gives no error, no message and does not passed to the 2nd user.
    Is there any special requirement in developing such process/form ??
    Please help me out on it.
    Abhinav

    I've studied the HTML generated by UIX and it has following bugs and misfeatures:
    1. Misfeature: Submitting with Enter works ONLY if there is exactly one text field in the form (no submit button is actually needed), as Brian Stoler wrote. I don't understand reason for this.
    2. Bug: UIX generates javascript function "_submitOnEnter" which is called as event handler for "onKeyPress" event. But this function is erroneously generated multiple times, once for each form in the page. Browsers (Mozilla and IE) use the latest implementation. This function is different for forms with one text field and for forms with more text field, but only the first one can do the job. As a consequence of this, Enter can submit the form only if the last form on a page has single text field (which is for example not the case of search form with single field above another form...)
    Tested with UIX 2.1.7 in JDeveloper 9.0.3.3, using UIX as JSP tag library.
    Workaround:
    1. Use Opera browser: it submits form with enter key even if there is no submit button (this does not work for the first text field in the form, because it has "onkeypress" event handler).
    2. Implement this feature by hand yourself, if you really need it (see below).
    3. Use accessKey: allows to submit form with Alt+<key> combination (followed by Enter with IE).
    Implementing Enter key submits with Javascript:
    1. Put the following function to the header (or to javascript library):
    function enter(e, frm) {
    var kc;
    if(window.event) kc=window.event.keyCode;
    else if(e) kc=e.which;
    else return true;
    if(kc==13) {
    submitForm(frm,1);
    return false;
    Function copied from UIX (C).
    2. Add this event handler to each input element:
    onKeyPress="return enter(event, 'formName');"
    It is obvious that this is error prone, but it works with all browsers...
    Will this be fixed in future versions?
    Why only form with one text field can be submitted?

  • Submitting form with Enter key

    Hello,
    in standard html form, when you have form with submit button, the enter key when any form element is selected submits the form.
    This is very convenient for users, so I want this with UIX forms. I know it is possible (I have one form where it is working), but I can't get it working anywhere else.
    This code works:
    <uix:form method="post" name="newRoleForm">
    <uix:inlineMessage prompt="Role name">
    <uix:textInput name="newRoleName" />
    <uix:spacer width="15" />
    <uix:submitButton text="Create" formName="newRoleForm" />
    </uix:inlineMessage>
    <uix:formValue name="jboEvent" value="newRole" />
    </uix:form>
    When I copy this code to another page, it does not work...
    Can somebody help, please?

    I've studied the HTML generated by UIX and it has following bugs and misfeatures:
    1. Misfeature: Submitting with Enter works ONLY if there is exactly one text field in the form (no submit button is actually needed), as Brian Stoler wrote. I don't understand reason for this.
    2. Bug: UIX generates javascript function "_submitOnEnter" which is called as event handler for "onKeyPress" event. But this function is erroneously generated multiple times, once for each form in the page. Browsers (Mozilla and IE) use the latest implementation. This function is different for forms with one text field and for forms with more text field, but only the first one can do the job. As a consequence of this, Enter can submit the form only if the last form on a page has single text field (which is for example not the case of search form with single field above another form...)
    Tested with UIX 2.1.7 in JDeveloper 9.0.3.3, using UIX as JSP tag library.
    Workaround:
    1. Use Opera browser: it submits form with enter key even if there is no submit button (this does not work for the first text field in the form, because it has "onkeypress" event handler).
    2. Implement this feature by hand yourself, if you really need it (see below).
    3. Use accessKey: allows to submit form with Alt+<key> combination (followed by Enter with IE).
    Implementing Enter key submits with Javascript:
    1. Put the following function to the header (or to javascript library):
    function enter(e, frm) {
    var kc;
    if(window.event) kc=window.event.keyCode;
    else if(e) kc=e.which;
    else return true;
    if(kc==13) {
    submitForm(frm,1);
    return false;
    Function copied from UIX (C).
    2. Add this event handler to each input element:
    onKeyPress="return enter(event, 'formName');"
    It is obvious that this is error prone, but it works with all browsers...
    Will this be fixed in future versions?
    Why only form with one text field can be submitted?

  • Issues submitting form with Reader X

    I am using Adobe Reader X on a Mac and the program will not allow me to submit the form. When I click on the submit button, a message pops up that says this operation is not permitted. If I open the form in an older version of Reader, it works correctly. Why won't X work? Is there a way to fix it?

    Some questions:
    1. Is it a secured form with some printing restrictions? You can check this from the document properties under the Security tab.
    2. Is it happening with all the forms or some particular ones?
    3. Some specific detaills like printer/ OS etc might be helpful.

  • Bug submitting form with SpryUtils.submitForm

    You can view this problem here:
    http://www.bachelorsguide.ca/spry16Ajaxsubmit.html
    In the SpryUtils.js file I have changed the final "return:
    false;" to "return: true;" as I want the form to submit to the
    defined action of the form after doing the ajax submit.
    This works in IE... it submits the ajax hit with all the form
    variables then submits to the a third party payment page with all
    the form variables.
    In FireFox it submits the ajax post but doesn't seem to be
    passing the form variables with that submit, then it posts the form
    to the thrid party and all the form variables are passed for that
    hit.
    The issue seems to be that the form variables are not
    submitted with the Ajax post when using FF but are submitted when
    using IE7.
    When I leave the final "return: false;" then the Ajax hit
    DOES work in FireFox... only when I change it to true; that FireFox
    stops working...
    Please help

    Diana,
    The line you gave me was giving me syntax error.
    i played with it and found that if I removed all references
    to any return that it worked.
    So I this right now......
    onsubmit="Spry.Utils.submitForm('order_form',
    '',{method:'post', url:'modpython/index.py?aoi=true',
    async:false});
    No returns, and the Utils file has the original code with the
    return false at the end.
    I don't know what the syntax issue was but it is working in
    Safari, IE7 and FF and I want to give you a big kiss!
    Ok sorry for being inappropriate but I am extremely happy.
    Thanks Diana so much... if you ever have DB issues let me
    know. I owe you.

  • How use oracle forms with oracle database  in a local computer network(client -server homogenious network)

    Hello experts,             
                         I am new in Oracle forms.I am using oracle forms 11g with weblogic server 10.3.5 and oracle database 11g at windows 7 platform.
    I want to call my oracle forms(main  login form) from different computers(windows7) connected in a local network.My oracle database is installed in a server computer.I am not talking about oracle forms hosting in internet.I want to deploy oracle forms in a local computer network connected via LAN cable or wi-fi.
    thank You.
    regards
    aaditya

    In most cases you can copy the same entry found in the tnsnames.ora file used by the database.  In the database home, the file can be found in \network\admin.  Open the file and you should find something like this:
    yourAlias =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.100)(PORT = 1521))
        (CONNECT_DATA =
          (SERVICE_NAME = orcl)
    So in the above, you would need to set the alias (this can be anything you like), the IP address or hostname of the machine where the database is running, the port number used by the db listener, and the service name used by the db.  Most of this will already be set for you if you are copying from the database tnsnames.ora.  So you should be able to just copy and paste.  More information about the tnsnames.ora file can be found in the db documentation:
    http://docs.oracle.com/cd/B28359_01/network.111/b28317/tnsnames.htm

  • Submitting form with multiple records.

    Can any one help me how to implement following functionality.
    I have page flow portlet which renders list of 10 records. I need to display record name, record number and one check box for every record. User can select some of the records and add those to one group. I am able to disply the list successfuly by using <netui:repeater> tag. Problem is coming when i select some of the records and click on submit. It is not updating coresponding form bean. My form bean is as following.
    public static class RecordsListBean extends FormData{
    private String userId;
    private List recordList;
    setters and getter for above properties
    recordlist contains list of RecordBean. RecordBean class having two properties record name , record number , isSelected (boolean) and coresponding setters and getters.
    When i try to submit the form i am getting errors something like unable to edit actionForm.recordList[0].isSelected value for all records.
    Can anyone help me why i am getting this? and let me know if you know best practise method to implemet this.
    Thanks.
    Edited by: user10471254 on Feb 25, 2010 9:35 PM

    Hi
    I saw one weird issue with WLP 10.3. I have a form bean with one instance variable named as "iClassCard". I have setters and getters. In JSP I use this form object. When I put a netui:text field and assing the datasource value, when I type actionForm. it shows the list of all instance variables. Weird thing is it shows my instance varialbe with uppercase "i" like IClassCard instead of "iClassCard". If I forcefully change this to like datasource=actionForm.iClassCard, it shows yellow line waring saying variable not defined. To fix this I just changed my instance variable in form bean to uppercase like IClassCard. Or worstcase just do not use "i" as the beginning character for any instance variable. So give a try renaming the variable isSelected on your side and see if this works.
    Coming to your usecase you can use List type and netui-data:repeater tag. Make sure that incase if you use netui:anchor tags to sumbit the form ations, please do add formSubmit="true" something like <netui:Anchor formSubmit="true" action="yourActionName" ...>. If you do not set formSubmit = "true", the List will not be updated with the user entered values when you view on pageflow side in that submit action method.
    Thanks
    Ravi Jegga

  • 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
    >

  • Problems submitting form with Adobe Reader X?

    Our agency created a PDF fillable form, and recently three respondants using Adobe Reader X (on PCs) have contacted us to say that the submit button is not working and they are unable to save the contents of the form to a file on their computer.  The Forms Central Forum had said Adobe 8.0 or higher would support the fillable form, so we are surprised to be running into this.  Has anyone else encountered this problem and found the solution?  Is there a step we are missing?  Thank you!

    @melissasnider : make sure that the form filler are using Adobe Acrobat, Adobe Reader or Acrobat Mobile to fill up the form.  Any other PDF viewers doesn't support the submission functionality. More information can be found here : http://forums.adobe.com/docs/DOC-2653.
    Hope this helps
    Gen

  • Submitting Form with Return Key?

    I have a form at www.bsatshirts.com login page that will not allow logging in without clicking the login button.  The question I have is; is there a way to set the return key to submit the form as well as hitting the login button? I look forward to any solution, or help that can be offered.  Thank you.  the code is as follows:
    Login to your account below
            or<br />
            <a href="http://www.bsatshirts.com/store/pc/form.html">create a new account.</a><br />
            User Name
            <input type="text" name="LoginEmail" size="12" />
            Password</span>
            <input type="password" name="LoginPassword" size="12" />
            <input name="PassWordExists" type="hidden" value="YES" />
                            <a href="JavaScript:document.login.submit();"><img src="images/login.gif" alt="" border="0" /></a>
            <input type="hidden" name="SubmitCO.y" value="1" />
            </h5>
        </form>

    your form uses javascript to make the click of an image submit the form. Use submit input type to have the return key submit the form:
    <input type="submit" value="login" />

  • Compile Form against UTF8 Database

    Hello,
    Is it necessary to compile a Form against UTF8 Database to run it against UTF8 Database?
    I'm on Forms 10.1.2.0.2 and Database 10.2.0.3.
    Database Parameters are:
    NLS_CHARSET=UTF8
    NLS_LENGTH_SEMANTICS=CHAR
    Can I compile a Form against WE8MSWIN1252 Database (NLS_LENGTH_SEMANTICS Parameter of the DB is also set to CHAR and when compiling the form the environment variable is also set to CHAR), and run the form against UTF8 Database (including the needed .env file in the formsweb.cfg), or do I have to set NLS_LANG and recompile the form against UTF8 database?
    thx and regards,
    Christian

    Well I thought that I have to ask support...But I hoped someone had some experiences with that.
    But here are some troubles I had with UTF8, maybe it helps someone, if not it's a nice type-in training ;-):
    We had some very strange behaviours regarding forms with UTF8 databases, so the first believe was, that I have to generate against UTF8 database.
    Well - the bad thing was the NLS_LENGTH_SEMANTICS parameter, which we set to CHAR for UTF8, and also for WE8, for the reason that a VARCHAR2(255) can really contain 255 chars, and not maybe 255/3 chars...
    As the strange "Signature of Package has been changed" error which occured in UTF8 also occured in WE8, I did some researches.
    The problem occured, when I had a record type (no %rowtype, no %type) declared in a database package spec, instanciated in forms, and given as a parameter to another stored procedure.
    scenario:
    forms compiled with NLS_LENGTH_SEMANTICS=CHAR, the package created and compiled with NLS_LENGTH_SEMANTICS=CHAR; => correct behaviour.
    now in sqlplus:
    alter session set NLS_LENGTH_SEMANTICS=BYTE;
    alter package <recordpackage> compile;
    and run the form again => ora-4062.
    but as said: after some time this behaviour also happened in WE8.... Charset, and at the moment I didn't have any other troubles...hm...I'll have to do some checks.
    but thanks for your response
    regards

  • Form with a control block

    I have a form with no database block. there is only one control block with a button
    when a user presses the button I insert record into a table and then commit;
    I am getting no changes to save message. how can I avoid that.
    (setting record-status to query?) any other way?

    Change your design of logic. In the case insert and commit in procedure on the server side.
    Try to play with :system.message_level.
    Well, consider using the FORMS_DDL command, of course.

  • Connect Pdf Form with Air Sqllite data

    Hi, i would like to save my Pdf Form localy but i know about restrictions of 500 users (legal notes after giving advanced user permission).
    I thought about do it in air which could have my pdf form inside. I thought that people after filling form with data could save it localy by connecting PDF Form (embed in air) with Air database. So people could save it offline and fill rest form date f.e. after few days to complete it later.
    I don`t know any more option to save my form data localy (offline) without installing localhost database. Air installing is simple but i don`t know how should i start.
    Please tell me how can i connect my PDF Form with Air database?
    EDIT:Do you have any tutorials of that?

    I read also about JavaScript method of sending data from PDF form to AIR with using PostMessage (communicate throw JavaScript & HTML Object embed). Now i don`t know is there more easy way to communicate with SQL lite Air local database than using PostMessage command (more direct as setting up File>New Connection>OLEDB Database in Livecycle Designer)?

  • How can I save a form with database connections with the info w/o requiring the connection again?

    I have a form in LiveCycle ES2 that has an ODBC connection to an Access 2007 database.  The form works great and all the data populates the form just fine, but next I need a way to save the generated form with the data so it can be sent and signed by people who won't (and can't) have a connection to the database.  I am developing on a Windows 7, 64 bit machine and have Adobe Acrobat X Pro, and Adobe Reader X.
    Any help or suggestions would be appreciated.
    Thanks

    Thanks for the quick response.  I tried saving the form as Reader Extended in Acrobat Pro, but if I close the form I saved as extended, it still prompts for the data connection.  Is there some setting in Adobe LiveCycle in the properties that maybe needs to be set?  I have it set as a Dynamic XML Form.  In form properties, there is a tab called data binding, should I have "Allow binding to data not defined by the default data connection" checked?  Wasn't sure what "Add data nodes inside the filtered data hierarchy" would do either.

Maybe you are looking for