Making a form for a survey?

How can I make a form, so it sends results to file, mabey a
.txt, or something, and send it to a page saying it was sent, a
custom page of my own?
Dreamweaver MX - Version 6

> I ned it just to like, tell how u got here, and why u
came, and my sever uses:
That's not a survey- do you want a contact or information
form where what
the user enters is emailed to you?
>
> Hosting OS Proprietary *nix
> PHP version 4.4.1
> Perl version 5.8.4
> MySQL version 4.0.24
Does this hosting have a Control Panel or Cpanel?
Look in there for in Scripts or similar for formmail clone
instructions.
or- use this tutorial for information
http://apptools.com/phptools/forms/
Or- use phpformmail from boaddrink.com.
Build your form (do not use "Layout Mode", use regular table
editing under
dw View menu)
see this older posting for quick instructions on phpformmail:
details:
1)go to
http://boaddrink.com
-->phpformmail
download it.
http://www.boaddrink.com/projects/files/phpformmail/phpformmail_class...
.2.zip
extract the ZIP file.
2) open formmail.php in dreamweaver
Make the following changes (in code view, turn line numbers
on)
2a)
line 4,
define('CHECK_REFERER', true);
change to:
define('CHECK_REFERER', false);
reason: too many people use a firewall or Norton security to
restrict this.
2b)
Line 43
$referers = array('www.example.com', 'example.com');
change to the url address of your web site.
reason: this probably isn't needed since we just turned the
referrer
checking off. but change it anyway.
2c)  *********this is the hard-coding of the recipient
address into the php
file, where it is totally invisble**********
Line 46
$recipient_array = array();
change to:
$recipient_array = array('me' =>
'[email protected]);
**put YOUR email address in to replace
[email protected]
reason: this sets the email address the form results will be
sent to.
3) now do a File-->Save As and save this file to within
this Local Site
folder.
4) in dw's File Panel, find formmail.php and upload it to the
remote site.
5) Now open your form html file in dreamweaver,
5a)click the mouse into the form area, and select the
<form> tag on the
lower left margin of the design window.
In the Property Inspectory, it should now show the properties
of the <form>
tag. In the Property Inspector, to the right of the ACTION
line, click the
folder icon and browse to and select the copy of the
formmail.php file
you've saved to within this site.
5b) now go to dw menu-->Insert-->Form
Objects-->Hidden Field
This inserts a hidden form field.
In the property inspector, change the NAME of this field to:
 recipient
And the VALUE of this field to:  me
the code should look like:
<input name="recipient" type="hidden" id="recipient"
value="me">
6) Save and upload the form page.
Try the form from the website.
Optional:
make a new page for a thank you for submitting message.
In the form, insert another hidden field.
Name:  redirect
Value:  the full absolute
http:// address to the new thank you page.
There is other information about that script in the Docs
folder.

Similar Messages

  • Form for password changing. code problem

    hi dears,
    i am using forms6i. i was making a form for password changing purpose. i've written this code this is successfully compiled but it is not changing the password. wil u plz tell me where is the problem.
    declare
         v_user varchar2(50);
         v_oldpassword varchar2(50);
         v_var2 varchar2(50);
         v_leng number(3);
    begin
         v_oldpassword := get_application_property(password);
         v_user:=user;
         v_var2:=upper(:password_old);
         if v_var2<>v_oldpassword then
         message ('Old Password Is Not Correct...');
         message ('Old Password Is Not Correct...');
         raise form_trigger_failure;
         end if;
         if :password1<>:password2 then
              message ('Typed Passwords Are Not The Same...');
              message ('Typed Passwords Are Not The Same...');
              raise form_trigger_failure;
         end if;
         v_leng:=length(:password2);
         if :password1=:password2 and v_leng<=3 then
         message ('Password Must Have Four Characters...');
         message ('Password Must Have Four Characters...');
              raise form_trigger_failure;
         end if;
         if v_var2=v_oldpassword and :password1=:password2 then
         FORMS_DDL('alter user ' || v_user || ' identified by ' ||:password.password2);
         message ('Password Is Changed... Please Restart The Oracle Applications...');
         end if;
    end;
    COMMIT;
    LOGOUT;
    thanks

    Hi dear,
    Please use this code to change your password:
    declare
    v_user varchar2(50);
    v_oldpassword varchar2(50);
    v_var2 varchar2(50);
    v_leng number(3);
    begin
    v_oldpassword := get_application_property(password);
    v_user:=user;
    v_var2:=upper(:password_old);
    v_leng:=length(:password2);
    if v_var2 != v_oldpassword then
    message ('Old Password Is Not Correct...');
    message ('Old Password Is Not Correct...');
    raise form_trigger_failure;
    elsif
    :password1 != :password2 then
    message ('Typed Passwords Are Not The Same...');
    message ('Typed Passwords Are Not The Same...');
    raise form_trigger_failure;
    elsif
    :password1=:password2 and nvl(v_leng,0) <=3 then
    message ('Password Must Have Four Characters...');
    message ('Password Must Have Four Characters...');
    raise form_trigger_failure;
    elsif
    v_var2 = v_oldpassword and :password1 = :password2 then
    FORMS_DDL('alter user ' || v_user || ' identified by ' ||:password.password2);
    message ('Password Is Changed... Please Restart The Oracle Applications...');
    end if;
    end;

  • Smart Form for the CRM Survey

    Hi Experts,
    I want to do a smarform for the CRM Survey, is there any standard smart form for this.
    How do we trigger the smart form for the same.
    Thanks in Advance,
    Praveen

    Hi Praveen,
    As per my understanding u have to make a custom smartform for CRM.
    Try using  FM CRM_ORDER_READ with importing Parameters IT_HEADER_GUID and for Bar Code
    use standard smartform BC470_FLOWD_LABELS.
    Hope This Helps...
    Thanks
    Ravi

  • How can I set up a form for someone to fill out on another person's behalf?

    I am trying to set up a form in which someone is asked to fill in the form for another person. Basically, we're asking people if they're still our primary contact. If they are, it's a simple blind form confirmation. If they're not, we are asking them to please tell us who is. So it will take them to a form where they can tell us who is the new contact. However, I don't want cookies for the new person to be attributed to the person that filled out the form (as that would then mess with segmentation, lead scoring/nurturing, etc). We also need to see who is the person filling out the form, so we know who the new person is replacing. So we'll need to collect the name and/or email address of the person filling out the form, in addition to the name and email address of the person they're adding.
    I know this can be done, as at a previous company we had a form that was used internally to add people who called in sales inquiries, so that we could capture them as "submitting an inquiry" as if they had just filled out a form. For example, I would fill out the form after someone called in asking for product information, but the online behavior of that person would not be attributed to me even though I filled out the form from my computer. Unfortunately, I can't recall how this was set up. Does anyone have any ideas on how this could be set up?

    Hi Abby,
    The easiest way to do this is to set up two forms:
    The first form is for your primary contact, who will submit the email address for the secondary contact and any additional contact data for the secondary contact. You can also include a field (hidden or otherwise) for the primary contact if you wish to record this form submission activity, but functionally this is not required.
    A second form which will accept the secondary contact's email address and any other contact info you'd like to capture through this process.
    The trick is that once you've got these two forms saved, you add a form processing step to the first form called Post Data to Server. In this processing step, you fill in the details for the second form, including making sure to map the secondary email address field on form 1 to the primary email address field on form 2. The URL will need to be the POST action url for the secondary form, which you can get from the integration details. You'll also need to append your SiteID and Form Name, and also a variable to disable cookies for this submission (elqCookieWrite). The final URL should be something like this:
    https://s1886.t.eloqua.com/e/f2?elqSiteID=1886&elqFormName=Alt2&elqCookieWrite=0
    My organization is 1886, so you'll have to replace this with your Site ID
    My secondary form name is Alt2, so you'll have to replace this with your secondary form name
    elqCookieWrite=0 ensures the secondary form will not try to associate the session with the ElqGUID (cookie)
    In the secondary form, make sure you have the processing step Update Contacts - With Form Data.
    Now when submitting form 1, you'll see a submission to both forms, and the contact info submitted to form 2 creates a new contact (or updates an existing one) with no ties to the current session/cookie used to submit form 1. You can add these contacts to a shared list, enter them into a separate campaign or program, or anything else you could do with a normal form submission.
    One caveat to remember though is that since this person did not submit the form, you have not technically collected any permission to contact them, so you'll have to sort that out with whatever rules apply in your area (your use case seems to be for existing customers which is generally OK, but you should still check).
    Hope this helps,
    Richard

  • Making a form able to be saved in reader

    I made a form for a friend and want him to use it as a template (invoice). But when I open it in a Acrobat Reader after creating the fields in pro it say it can only be printed not saved.
    What do I do in pro to allow him to save it?
    Appreciate the help. I searched for the answer before posting thinking this is a normal question

    The Adobe techdoc links are an excellent, detailed source of several methods on the Enabling User Rights process, for versions 7.0.8 and later.
    The newsletter I produced on the subject at hand was intended as a simple, step-by-step, illustrated guide for many clients who had issues with the process of making forms for Adobe Reader users with Acrobat Pro v. 7.0.8 and it seems to have helped many of them figure out how to use the feature better. I will be producing a new one for version 8 over the summer (unless, of course, Acrobat 9 makes an appearance by then. :-) )

  • Making a form portlet reusable by allowing a parameter to be passed to it

    I have a form that allows maintenance on records. I need to filter the records that a user can maintain, (and insert) based on a column value. I can accomplish this by setting the default value for the (hidden) column. When I query and maintain the records in the form it behaves correctly by only affecting the records for the default value. Now I want to place the form into multiple pages as a portlet.
    The goal is to be able to change the default value for the portlet (reuse). I've seen many postings on how to pass things to and from forms, but nothing seems to address allowing a user to easily customize the portlet.
    Any bright people out there have a creative solution to this?

    I discovered the way to do this is by making the form based on a procedure and creating link to the form. When a form is based on a table or view, the link will pass field information and return records, when a form is based on a procedure there are no records to retrieve so it sets values passed as default.

  • Making a form, why does the text type over top of itself in the form field?

    Hi, I am making a certificate form for a client to fill out and print when needed. I designed everything in InDesign, exported to pdf, and made a form field for Old English MT for the name and date. When I close the form editing window and type a name in the allocated spot, the letters type on top of each other, not left to right like normal. I am working on a mac, client is on a pc.

    Yes its possible it happens when there is a Duplicate Field on top of itself. I helped someone last year that had several fields that were duplicated.
    Open Acrobat.
    Go to tools menu
    Choose Forms.
    Click on Edit.
    Click the field(s) that appear to have duplicated text.
    If your keyboard has arrow keys click on the field then use arrow key to move to left, right, up, or down. If field shows underneath is not moved, delete the field selected.
    Repeat as needed.

  • Making pdf form non-editable after submission

    I created a form for users to fill in and submit by a "Submit by Email" button. The form is being send back as a pdf form in an attachment in an email. After we receive it back and have reviewed it and possibly making changes, we need to save it so the form fields are not able to be changed. How can this simply be done?
    Thanks,
    Chad

    FWIW, if your form does not have to be dynamic (grow, shrink, add fields on the fly), it is often better to create it in Acrobat. It's generally easier to create, easier to program, and will have much fewer backwards compatibility issues. There are a lot of things, such as flattenPages, that are available with Acrobat forms that are not available with XFA forms.
    George

  • Hi! I have a Creative suite Design Standard 9 Adobe program and I am attempting to make a wizzard form that can be made into an entry form for a competition. So I need to 1. Make the form into a question and answer form that Participants may fill out. 2.

    Hi! I have a Creative suite Design Standard 9 Adobe program and I am attempting to make a wizzard form that can be made into an entry form for a competition. So I need to 1. Make the form into a question and answer form that Participants may fill out. 2. make it possible for them to download it via a link on our website 3. make it possible for them to save the info they have written into the form and mail it to the mail we have supplied in the entry form and 4. make it possible for them to put in a jpg. as part of the entry for and lastly 5. make it possible for us to copy paste the document and use it on other platforms. How do I do this - is it at all possible with adobe?

    Those requirements are go way beyond what PDF forms can do and are meant for, some of them would require involving other programs or are mutually exclusive and contradictory. You are wasting your time even thinking about doing this as an "offline" PDF form. Simply sign up for an online forms/ survey service like FormsCentral or Surveymonkey.
    Mylenium

  • Making data accessible for a JSP

    What is the preferable way of making data accessible for a JSP from a Struts action?
    I currently store it in the session object. But this seems unnecessary since the only jsp that has to have access to the data is the one defined in by Struts' forward mapping for the action (whereas the session stored object scopes over all jsp's).
    Thanks,
    Seb

    If the info is only required for one page, then a request attribute instead of a session attribute would seem appropriate.
    Either that or load the data into an action form to display.

  • FreeHand: building reqired fields in forms for a website

    Hi I was woundering if anyone has a little experiance in making a form's fields required?
    Such as one of my forms like this one http://www.jobsandcareers.org/advertising_executive_jobs_id353.html which is tripod based and hosted.
    I'm a bit of a novice, and creating reqired fields in my forms has me a bit stumped, althoungh I can handle some basic coding, like my free hand international job search engine :: http://www.jobsmanager.org/ which I'm alway's interested in hearing feedback about, or link partners.
    Thanks for your time, and any help, and tips on creating reqired feilds in my forms as listed above would be greatly apreciated.
    Cheney Lyon

    If you have one of the chars Territory or Sales officer in your datasource you could create the relationship by adding the other as nav attr to it. If you have sales officer coming from your DS, add Territory IO as nav attr on Sales officer IO. I assume there would be only one Sales officer per Territory. Otherwise this would not work.
    Now you would have 2 hier, one on Territory and the other on Sales officer maintained. Add Sales officer IO in the query and enable hier on it. Add SalesOfficer_Territory nav attr and enable hier on it. The relationship now is taken care by the master data maintained for Sales officer (nav attr Territory on it). In the query data at the territory level would automatically be aggregated to the Area and other levels above based on the hierarchy.
    You really need both the hier? I think you can enable hier on Sales officer (if this is what comes from the DS) in the query. Add Territory nav attr (no hier on it).

  • Adobe Interactive Forms - for Travel Expense Booking

    Hi:
    We are implementing Adobe Interactive Forms for Travel Expense Booking integrated with Portal (where user would download the form from portal locally to work offline and then upload it later when connected).
    For the form to function properly, our consultants has asked to make following changes in the Adobe Reader settings on user machine:
    1. Under Edit -> Preferences -> Internet -> Check "Display PDF in browser"
    2. Under Edit -> Preferences -> JavaScript -> Check "Enable Acrobat JavaScript"
    3. Under Edit -> Prefenences -> Security (enhanced) -> Uncheck "Enable Enhanced Security"
    All the above three changes are opposite to our current settings. And our IT group is seeing a major secutity threat to company network on making the above changes.
    I wanted to check how other companies with Adobe implementation are handling the above changes? Is there any work around to these changes?
    Any ideas?
    Thanks,
    Rahul

    you have to get really creative when trying to dynamically control the form without javascript / formcalc.
    One of my little secrets (you owe me big points here) is that I prepare my output in a series of tables when possible.
    For instance, in SAP i'll fill an internal table with
    Customer | Sales Order Number
    12345      |  80002038
    Date         | 09/15/2011
    Special Instructions | Deliver around back
    something like this... then I drop this table where I need it.  However, if there are no special instructions, I simply do not fill that info out in my internal table. This has the effect of "hiding" the field.

  • After printing a form for years (in black), it will now only print in RED. Other docs ok.

    After printing a form for years (in black), it will now only print in RED.   In printing another document, no problem.
    I tried highlighting the text and changing the font color to black - no luck.

    Please read this post then provide some details. What printer model? What operating system? How is the printer connected - USB, wired LAN, Wireless LAN, bluetooth? 
    Most likely whatever program you are using to print the forms is treating the text as a grapphic and the printer is making black by mixing cyan, magenta and yellow.  If your text is priting as red it would indicate that you are likely low on cyan ink.
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Adobe Form for printing Pay Cheque

    Does anyone know / tried using adobe form for printing pay cheque using payment medium workbench (PMW) instead of using  traditional sapscript and using RFFOUS_C program ?
    Regards,
    Trikanth Basetty

    Hi Praveen,
    Find out the data what is being printed for the first time, and check what is the flag that is making the change.  Hope that should resolve your issue.
    Thanks,
    Rakesh.

  • How to create an Action Profile for a Survey

    Hi
    Can you please help me with the steps to create an Action Profile for a Survey. Eg. If the user creates a like Lead / Service, Action profile assigned to the Transaction type has to trigger the Survey.
    Thx

    Hi Kalees,
                Survey is nothing but a Questioner that is Represent the Feedback for a Particular Transaction.
    Controlling Survey by a Action Profile is possible to some Extent indirectly.
    One way of Controlling the Survey Execution based on System Status
    Go To:Customer Relationship Management>Transactions>Settings for Activities>Questionnaires>Define Determination Criteria for Questionnaires Define a Criteria Set for a Particular Status,Here what ever Status Assigned are Responsible for the Survey Form to Appear in that Transaction Type at that Particular Status.
    In Define Determination for Questionnaires: Business Activity:assign the Criteria Set that you have Created to your Survey Form
    Go To:Customer Relationship Management>Transactions>Basic Settings>Status Management>Change Status Profile for User Status The Status Profile that you are using Ensure that the System Statuses are Assigned to a User Status on which you want the Survey Determination to Happen.
    Direct Action Trigger for Survy Form is not Possible
    This is one way to Control the Transaction Type Status and in mean you shall indirectly get Control over the Survey Form
    Hope it Answers your Queries..
    Thanks and Regards,
    RK.

Maybe you are looking for

  • Moving music from other websites to iTunes...

    I would like to import music from the American Idol website to iTunes, and to the library to move to my iPod. I have done this in the years past, but have forgotten how to do it. Could someone please help me? Thanks for any help I can get. HP   Windo

  • Some problems with Oracle and XA in WLS 6.1

    Hi, I am using WLS6.1 SP4 with Oracle Thin driver 8.1.7 and TxDataSources with ConnectionPools using XA. I am getting the following error: java.sql.SQLException: ORA-00604: error producido a nivel 1 de SQL recursivo ORA-01000: número máximo de cursor

  • Issue with creating oracle ODBC DSN connection

    Hi all, We have BO X! 3.1. We have created some webi reports. Our universe connection is created using following method. = Created a DSN connection for oracle 10g database = created Bo connection object by selecting Generic ODBC connection = in the s

  • Best options for decent quality output?

    Hi all, I'm using a Canon HG10 shooting HD AVCHD. I am pretty pleased with the new archive facility as it's helping save space, and I'm debating whether to edit in 960x540 or 1920x1080. The 1080 footage looks way better onscreen (to my eye at least)

  • HT201317 how do i see photos i believed i downloaded to icloud?

    i have an Iphone 4 and thought i had backup of my photos to the cloud, but i cant see them or know where to view them, i deleted them from my phone after i did this as i was trying to do the update ios6....please help i need these photos back!! THANK