HTML - Online Survey/questionnaire
hey,
ive designed a website using html/css and I need to put a questionnaire/survey on it. I've been searching the web for how to do this but I've found no decent resources. does anybody know how to do this or where the best place to find out how is? any help would be much appreciated many thanks stuart Similar TutorialsHello, I posted a similar question to this a couple of weeks ago but I thought it would be more relevent to start a new thread. I'm wanting to create a survey/questionnaire that i can put onto my website. Although using a site to generate a questionnaire is extremly effective I dont wish to do this. I want to do this as minimal effort as possible. i.e I dont want to create a database. From what i understand javascript can be written and the result written into a text file. I'd appreciate any suggestions or being pointed to a good resource or any advice in general. Many Thanks, Stuart. Hello, I'm seeking to create a multiple page survey where the entire form is submitted through email. I need help with two things: getting the next button on page 1 to link to page 2, and getting the form submit button to email data from both pages. I've deliberately removed the input type and sessid value on the code below. page 1 code Code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <META content="text/html; charset=UTF-8" http-equiv=Content-Type> <link href="testform.css" rel="stylesheet" type="text/css"> <title>Survey</title> <script language="JavaScript" type="text/JavaScript"> function check(object_id) { with (document.getElementById(object_id)) checked = !checked; } </script> </head> <body> <table class="Handler" cellpadding="0" cellspacing="0"> <tr> <td> </td> </tr> <tr> <td> <table class="SurveyLabel" cellpadding="0" cellspacing="0"> <tr><td>Survey</td></tr> </table> </td> </tr> <tr> <td> <table class="SurveyInstruction" cellpadding="0" cellspacing="0"> <tr> <td> Some text </td> </tr> </table> </td> </tr> <tr> <td> <form action="" method="post" name="frm" target="_self"> <input type="" name="sessid" value=""> <input type="" name="page" value="0"><table cellpadding="0" cellspacing="0" class="Survey"> <tr> <td> <table class="iText" cellpadding="0" cellspacing="0"> <tr> <td> Please tell us about yourself. </td> </tr> </table> <table class="Question" cellpadding="0" cellspacing="0"> <tr> <td>1. Your name</td> </tr> </table> <table class="Answer" cellpadding="0" cellspacing="0"> <tr> <td> <input type="text" class="iEdit" name="Q2" value=""> </td> </tr> </table> <table class="Question" cellpadding="0" cellspacing="0"> <tr> <td>2. Are you </td> </tr> </table> <table class="Answer" cellpadding="0" cellspacing="0"> <tr> <td> <table class="RadioGroup" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q3" value="1" id="idQ3_1" >Male </td> </tr> </table> <table class="RadioGroupEven" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q3" value="2" id="idQ3_2" >Female </td> </tr> </table> </td> </tr> </table> <table class="Question" cellpadding="0" cellspacing="0"> <tr> <td>3. What is your age? </td> </tr> </table> <table class="Answer" cellpadding="0" cellspacing="0"> <tr> <td> <select name="Q4" class="iCombo"> <option value="0" >-- Select --</option> <option value="1" >16-19</option> <option value="2" >20-27</option> <option value="3" >28-35</option> <option value="4" >35-45</option> <option value="5" >45 and above</option> </select> </td> </tr> </table> </td> </tr> <tr> <td class="SurveyBottom"> <input type="submit" class="iButton" value="Next >"> <input type="reset" class="iButton" value="Clear"> </td> </tr> </table> </form> <table border="0" cellpadding="0" cellspacing="0" class="ProgressTable"> <tr> <td width="1px">0%</td> <td> <table width="0%" border="0" cellpadding="0" cellspacing="0" class="Progress"> <tr> <td>0%</td> </tr> </table> </td> <td width="1px">100%</td> </tr> </table> </td> </tr> </table> <br> </body> </html> page 2 code Code: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <META content="text/html; charset=UTF-8" http-equiv=Content-Type> <link href="testform.css" rel="stylesheet" type="text/css"> <title>Survey</title> <script language="JavaScript" type="text/JavaScript"> function check(object_id) { with (document.getElementById(object_id)) checked = !checked; } </script> </head> <body> <table class="Handler" cellpadding="0" cellspacing="0"> <tr> <td> </td> </tr> <tr> <td> <table class="SurveyLabel" cellpadding="0" cellspacing="0"> <tr><td>Survey</td></tr> </table> </td> </tr> <tr> <td> <table class="SurveyInstruction" cellpadding="0" cellspacing="0"> <tr> <td> Some text </td> </tr> </table> </td> </tr> <tr> <td> <form name="frm" method="post" action=""> <input type="" name="sessid" value=""> <input type="" name="page" value="1"><table cellpadding="0" cellspacing="0" class="Survey"> <tr> <td> <table class="iText" cellpadding="0" cellspacing="0"> <tr> <td> Browsing information </td> </tr> </table> <table class="Question" cellpadding="0" cellspacing="0"> <tr> <td>6. How often do you visit our site?</td> </tr> </table> <table class="Answer" cellpadding="0" cellspacing="0"> <tr> <td> <table class="RadioGroup" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q11" value="1" id="idQ11_1" >Daily </td> </tr> </table> <table class="RadioGroupEven" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q11" value="2" id="idQ11_2" >3 or 4 times a week </td> </tr> </table> <table class="RadioGroup" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q11" value="3" id="idQ11_3" >Once a week </td> </tr> </table> <table class="RadioGroupEven" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q11" value="4" id="idQ11_4" >2-3 times a month </td> </tr> </table> <table class="RadioGroup" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q11" value="5" id="idQ11_5" >Monthly </td> </tr> </table> <table class="RadioGroupEven" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q11" value="6" id="idQ11_6" >Less than monthly </td> </tr> </table> <table class="RadioGroup" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q11" value="7" id="idQ11_7" >Not sure </td> </tr> </table> <table class="RadioGroupEven" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q11" value="8" id="idQ11_8" >Other<br><input type="text" name="Q11x8" value="" onChange="frm.idQ11_8.checked=true"><br> </td> </tr> </table> </td> </tr> </table> <table class="Question" cellpadding="0" cellspacing="0"> <tr> <td>7. Why did you visit our site today</td> </tr> </table> <table class="Answer" cellpadding="0" cellspacing="0"> <tr> <td> <table class="RadioGroup" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q12" value="1" id="idQ12_1" >Looking for general information </td> </tr> </table> <table class="RadioGroupEven" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q12" value="2" id="idQ12_2" >Searching for specific content information </td> </tr> </table> <table class="RadioGroup" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q12" value="3" id="idQ12_3" >Entertainment </td> </tr> </table> <table class="RadioGroupEven" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q12" value="4" id="idQ12_4" >Trying to buy something </td> </tr> </table> <table class="RadioGroup" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q12" value="5" id="idQ12_5" >To find a link to something </td> </tr> </table> <table class="RadioGroupEven" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q12" value="6" id="idQ12_6" >Software </td> </tr> </table> <table class="RadioGroup" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q12" value="7" id="idQ12_7" >Product or service support </td> </tr> </table> <table class="RadioGroupEven" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q12" value="8" id="idQ12_8" >Find contact or company information </td> </tr> </table> <table class="RadioGroup" cellpadding="0" cellspacing="0"> <tr> <td> <input type="radio" class="iRadio" name="Q12" value="9" id="idQ12_9" >Other<br><input type="text" name="Q12x9" value="" onChange="frm.idQ12_9.checked=true"><br> </td> </tr> </table> </td> </tr> </table> </td> </tr> <tr> <td class="SurveyBottom"> <input type="submit" class="iButton" value="Submit"> <input type="reset" class="iButton" value="Clear"> </td> </tr> </table> </form> <table border="0" cellpadding="0" cellspacing="0" class="ProgressTable"> <tr> <td width="1px">0%</td> <td> <table width="100%" border="0" cellpadding="0" cellspacing="0" class="Progress"> <tr> <td>100%</td> </tr> </table> </td> <td width="1px">100%</td> </tr> </table> </td> </tr> </table> <br> </body> </html> Hi, I am doing my final year project and am comparing two technologies (HTML5 -JavaScript and Flash -ActionScript). It would be greatly appreciated if you could take a few minutes to answer my survey: http://www.surveymonkey.com/s/CLVC23Z Thank You Hi, I am researching HTML5 vs Plug-in based browser software, namely Flash. I have developed a simple website with both technologies and a short survey. The survey is at the following URL- http://www.obiter-training.com/research All contributions are anonymous and no personal data is collected. Thank you for your help! I want to have a survey page on my site where each visitor will be asked random questions and their answers recorded along with their age, sex and religion. I have a set of 500 questions and an Ajax setup to pick one randomly and present it. That's not the problem. The problem is I'm not sure how to identify users. On one hand I want it to be as easy as possible for people to take part in this survey. On the other hand, I need to avoid asking a person the same question more than once, and I also need to know their age, sex and religion. (This is so that I can compare the answers across different demographic groups.) One way would be to have them register the first time they do the survey. Then they would fill in their details only once and thereafter just enter a name and password. But having to register might scare them off! Another way would be to do without registration, and have them enter their details every time they do the survey. That might be tedious for them. Another way would be to store the user's details in cookies. I am reluctant to rely on cookies because a) they could be wiped, b) it would increase the amount of data being transferred between the server and client and c) two people on the same computer would not be able to have different details. Each method has its drawbacks. I really want it to be easy for people to do this survey - otherwise I won't get the answers! - but, as I say, it's pretty much useless without the respondents' details. What should I do? I'm creating a RPG, using Unity 3d game engine, the game is called Venturo Online, the project was started on the 20th Jan, we have setup the site we are going to be using, we need some html help with the site, can anyone offer their help? Please leave your details below, or email : community@venturoonline.com, thanks. Hello everyone, I want to know how to put the html code into my web of an television channel. Example: abc tv online. Greetings! Ok so I am trying to create an online registry where people with rare diseases can register their name what disease they have where they live and it will email them of those around them with the same thing. Can someone please tell me how to do this or where i can go to learn how to do this. Thanks hi guys i have this requirement where in the client redirects a html page to my site and i have to provide him an interface from my site to edit the html ( which can be done using FCKeditor or Tinymce) after authentication and then when he presses save Ill have to save the html back to his server this is where i have some confusions, inorder to save back on his server do i need his ftp login credentials or is there any other way to circumvent it, pls let me know thx in advance I'm helping a friend who has set up a website to market ebooks. The page is fine, we have a Paypal account to receive payments but what I don't know how to do is automatically allow the purchaser access to the book once payment has been made. The easier way is email it after confirmation of the payment but there must be an automatic way of doing this? Any help would be appreciated. A client needs to edit one page of their site remotely using a browser. I'm not sure how to proceed. Do they need a page with form fields that are password protected so only they can provide content? Is there another way to edit wysiwyg text online without using a separate application? Any help would be appreciated. I am a beginner! (I thought I would warn you.) Can someone here please tell me how to do the code for being able to see how many viewers are online at a particular site. For instance so all shoppers can see how many people are shopping in that store at the same time? I hope that makes sense. Many thanks in advance!! I want to add an interactive form to a charity site I maintain. I used Zisp in the past, but we changed our Webspace provider recently and Zisp won't work there, (It's pretty limited anyway). I'm pretty good with HTML/CSS but I don't have a clue about PHP, CGI, Java etc. Can anyone suggest where I might start looking? (Being a charity, we don't have too much money to spend). Can someone please explain how forms work please. I know how to set them up and send them to another file to be processed. How do i set up the file to process it? Example: My form: Quote: <form action="http://www.music-web.org/webmail2.php" method="post" name="webMailLogin"> <input type="hidden" name="submitted" value="y" /> <table border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#FFFFFF"> <tr> <td colspan="2"><img src="http://music-web.org/images/clearpixel.gif" width="1" height="12"></td> </tr> <tr> <td class="black12" align="right"><b>Login: </b></td> <td class="QuickDomainCheck"><input type="text" tabIndex="1" name=" login_name " size="20" value=""></td> </tr> <tr> <td colspan="2"><img src="http://music-web.org/images/clearpixel.gif" width="1" height="12"></td> </tr> <tr> <td class="black12" align="right"><b>Password: </b></td> <td class="QuickDomainCheck"><input type="Password" tabIndex="2" name=" passwd " size="20" value=""> <input type="image" src="http://www.music-web.org/images/webmail/login.gif" align="absbottom" value=" Login " tabIndex="3" ></td> </tr> <tr> <td colspan="2" align="left"> <BR><BR><div class="text" style=" color:000000; font-family:arial; font-size:10px; padding-left:124; padding-top:5">Login using your email address and password.</div> </td> <td class="black10"><br><br></td> </tr> </table> </form> It gets sent to: Quote: <script language="JavaScript" TYPE="text/javascript"> function submitMe() { loginName = ' I need the value of the form in here '; //find @ atPos = loginName.indexOf("@"); //check >=1 if (atPos >= 1 ) { //get the domain name length domainLength = (loginName.length +1) //get the domain name domain = loginName.substring(atPos +1, domainLength ); //get the username user = loginName.substring(0,atPos); //set up the username to post to the mail form document.implogin.loginuser.value = loginName; document.implogin.imapuser.value = user; document.implogin.pass.value = 'I need the value of the form in here '; document.implogin.maildomain.value = domain ; document.implogin.maildomain.realm = domain; document.implogin.url.value = 'http://webmail.'+ domain + '/horde/login.php';document.implogin.action = 'http://webmail.'+ domain + '/horde/OWH_Logout.php'; document.implogin.submit(); } else { alert('Please enter in your full email ie. someone@yourdomain.com'); } } </script> I hope this isn't too confusing and someone can help. I have this website that i run for a person selling select products. Everything is going fine, but it would really help if i could make an adminstrator's page for the client, that would let them input a picture, name, description, price and have that posted to the product listing page. Ive seen some related posts in different places that mentioned use of php and mysql, but i havent found the right combo for what im looking for. If someone could help me out, it would be very appreciated. Hello! I'm a real beginner when it comes to html, so sorry for my stupid questions. I've started making a logic quiz for my students using the following quiz code that I found online http://student.ccbcmd.edu/~abeiderm/.../quizCode.html http://student.ccbcmd.edu/~abeiderm/tims2005/quiz.html But I have encountered two problems. 1. When I write logical symbols that I want to appear in the textarea for the answer it doesn't print the symbol, only the code. How am I suppose to write the code to get the symbol? My code is now: //produce output in textarea. document.quiz.output.value += "The answer to question 1 is A ∨ ¬ A \n"; 2. I would like to be able to print peoples (in particular my students) answers to a file, so I can use the quiz as a test. Is this possible? Is there any sample of such a code, that I can just copy? thanks in advance! hiya,i have a msn group and it doesn't support java scripts i searched on google tried a lot of webcounters but they are all with java .. is it possible to have an users counter without any java ?? just simple html.Thanks in advance ! *love - Elise Hey guys thanks to a hand full of sleepless nights, and some valuable guidance I received from some of you guys I finally have my first site-www.palmettogoldandsilver.com up and running smoothly... even on IE! So now I want to expand the site so I can list items on it for sale. I would like to list items with prices and have visitors be able to purchase the items online. Where do I go first? lol What do I need to do to get a shop up and functioning? Javascript? php? other? If someone could lay out some steps to take it would be great help thanks -Travis The IT Industry in India is booming! Here is a great opportunity for you to sell your products and services to this industry which is rapidly expanding. Subscribe to India's most comprehensive Online IT Directory! Features: >> You will be able to search an IT Company (ies) >> Drill down to details like Address, Area, Pin, Phone, Fax, Email, Website, Year of Establishment, About the company. >> Product & Services offered by the company. >> Contact details of Top executives including Managing Director, President, CEO, CTO, CFO, HR Manager. etc. >> Continously updated and verified. >> Generate mailer labels by executive title. To subscribe logon to www.itdatahouse.com Regards The itdatahouse.com Team +91 80 23537776 ext 1 URL: http://www.itdatahouse.com |