<?xml version="1.0" encoding="UTF-8"?><rss
version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
> <channel><title>Comments on: How do you make a questionaire for a webpage in javascript?</title> <atom:link href="http://www.findistore.com/how-do-you-make-a-questionaire-for-a-webpage-in-javascript/feed" rel="self" type="application/rss+xml" /><link>http://www.findistore.com/how-do-you-make-a-questionaire-for-a-webpage-in-javascript</link> <description>We are Professional Web Designer. We specialize in Website Design &#38; eCommerce Web Services</description> <lastBuildDate>Wed, 12 Oct 2011 00:03:14 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" /> <item><title>By: Sarge</title><link>http://www.findistore.com/how-do-you-make-a-questionaire-for-a-webpage-in-javascript/comment-page-1#comment-2034</link> <dc:creator>Sarge</dc:creator> <pubDate>Fri, 13 Mar 2009 00:52:57 +0000</pubDate> <guid
isPermaLink="false">http://www.findistore.com/how-do-you-make-a-questionaire-for-a-webpage-in-javascript#comment-2034</guid> <description>Well, if you are starting learning programming this is not something you are going to be able to learn by class tomorrow.
With that said...
you will have to have a form...
&lt;form name=&quot;pageForm&quot; method=&quot;post&quot; action=&quot;&lt;?php $PHP_SELF;?&gt;&quot;&gt;
&lt;input type=&quot;hidden&quot; name=&quot;action&quot; value=&quot;go&quot; /&gt;
What is your favorite color:
&lt;input type=&quot;radio&quot; name=&quot;favcolor&quot; value=&quot;1&quot; /&gt;
&lt;input type=&quot;radio&quot; name=&quot;favcolor&quot; value=&quot;2&quot; /&gt;
///... put other questions and answers as you desire
&lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Vote&quot; /&gt;
&lt;/form&gt;
&lt;?php
if($_POST[&quot;action&quot;] == &quot;go&quot;){
// grab all values from the form
// insert values into database
// maybe redirect to another page, something like thank you for your votes.... or something
}
?&gt;
Hope this helped you to get started
// some things that you will want to search in google for are getting values from a form in php
Good Luck!</description> <content:encoded><![CDATA[<p>Well, if you are starting learning programming this is not something you are going to be able to learn by class tomorrow.</p><p>With that said&#8230;</p><p>you will have to have a form&#8230;</p><p>&lt;form name=&quot;pageForm&quot; method=&quot;post&quot; action=&quot;&lt;?php $PHP_SELF;?&gt;&quot;&gt;<br
/> &lt;input type=&quot;hidden&quot; name=&quot;action&quot; value=&quot;go&quot; /&gt;<br
/> What is your favorite color:<br
/> &lt;input type=&quot;radio&quot; name=&quot;favcolor&quot; value=&quot;1&quot; /&gt;<br
/> &lt;input type=&quot;radio&quot; name=&quot;favcolor&quot; value=&quot;2&quot; /&gt;<br
/> ///&#8230; put other questions and answers as you desire<br
/> &lt;input type=&quot;submit&quot; name=&quot;submit&quot; value=&quot;Vote&quot; /&gt;<br
/> &lt;/form&gt;</p><p>&lt;?php</p><p>if($_POST[&quot;action&quot;] == &quot;go&quot;){<br
/> // grab all values from the form<br
/> // insert values into database<br
/> // maybe redirect to another page, something like thank you for your votes&#8230;. or something<br
/> }</p><p>?&gt;</p><p>Hope this helped you to get started<br
/> // some things that you will want to search in google for are getting values from a form in php</p><p>Good Luck!</p> ]]></content:encoded> </item> </channel> </rss>
