<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Free Web Resources - Web Resources Depot &#187; Polls &amp; Surveys</title>
	<atom:link href="http://www.webresourcesdepot.com/category/goodies/polls-surveys/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.webresourcesdepot.com</link>
	<description>Free Web Resources</description>
	<lastBuildDate>Sun, 12 Feb 2012 13:06:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Ajax Poll Script With PHP, MySQL &amp; jQuery</title>
		<link>http://www.webresourcesdepot.com/ajax-poll-script-with-php-mysql-jquery/</link>
		<comments>http://www.webresourcesdepot.com/ajax-poll-script-with-php-mysql-jquery/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 09:54:53 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
				<category><![CDATA[Extras]]></category>
		<category><![CDATA[Goodies]]></category>
		<category><![CDATA[Licenses]]></category>
		<category><![CDATA[Other License]]></category>
		<category><![CDATA[Polls & Surveys]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=1704</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=1704&c=27595' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=1704&c=27595' border='0' alt='' /></a></p><p><a href='http://buysellads.com/buy/sitedetails/pubkey/ed230295611f656daf3115e6d682ca7d/zone/1259982' target='_blank'>Advertise here with BSA</a></p><br />In this tutorial, we&#39;ll be creating an Ajax Poll Script that displays the results with colored and animated lines using PHP, MySQL and jQuery. The script has a pretty easy logic and can be implemented into any website quickly by simply calling a php function like getPoll(2) which brings the second poll. The code has [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=1704&c=13219' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=1704&c=13219' border='0' alt='' /></a></p><p><a href='http://buysellads.com/buy/sitedetails/pubkey/ed230295611f656daf3115e6d682ca7d/zone/1259982' target='_blank'>Advertise here with BSA</a></p><br /><p>In this tutorial, we&#39;ll be creating an <strong>Ajax Poll Script</strong> that <strong>displays the results with colored and animated lines</strong> using PHP, MySQL and jQuery.</p>
<p>The script has a pretty easy logic and can be <strong>implemented into any website quickly</strong> by simply calling a php function like <code>getPoll(2)</code> which brings the second poll.</p>
<p><a href="http://webresourcesdepot.com/wp-content/uploads/file/ajax-poll-script/"><img alt="Ajax Poll Script" height="254" src="http://www.webresourcesdepot.com/wp-content/uploads/ajax-poll-script.gif" width="480" /></a></p>
<p><a href="http://webresourcesdepot.com/wp-content/uploads/file/ajax-poll-script/"><img alt="Ajax Poll Script Demo" height="48" src="http://www.webresourcesdepot.com/wp-content/uploads/image/demo-button.gif" style="border: 0px none;" width="480" /></a><a href="http://www.webresourcesdepot.com/?download=AjaxPollScript"><img alt="Ajax Poll Script Download" src="http://www.webresourcesdepot.com/wp-content/uploads/image/download-no-rss-button.gif" style="border: 0px none;" /></a></p>
<p>The code has 3 parts: HTML, JavaScript (jQuery) and PHP. Let&#39;s start with the easiest one:</p>
<p><span id="more-1704"></span></p>
<h3>HTML</h3>
<p>The <strong>HTML for the poll is generated within the PHP function </strong>which is usually nice as it is only a 1-line-code and doesn&#39;t create a visual pollution in the overall HTML.</p>
<p><pre class="brush: html">
&lt;div id=&quot;pollWrap&quot;&gt;
    &lt;form name=&quot;pollForm&quot; method=&quot;post&quot; action=&quot;inc/functions.php?action=vote&quot;&gt;
        &lt;h3&gt;Poll Question 1&lt;/h3&gt;
        &lt;ul&gt;
            &lt;li&gt;
                &lt;input name=&quot;pollAnswerID&quot; id=&quot;pollRadioButton1&quot; value=&quot;1&quot; type=&quot;radio&quot;&gt;
                Answer1 for Poll1
                &lt;span id=&quot;pollAnswer1&quot;&gt;&lt;/span&gt;
			&lt;/li&gt;
            &lt;li class=&quot;pollChart pollChart1&quot;&gt;&lt;/li&gt;
            &lt;li&gt;
                &lt;input name=&quot;pollAnswerID&quot; id=&quot;pollRadioButton2&quot; value=&quot;2&quot; type=&quot;radio&quot;&gt;
                Answer2 for Poll1
                &lt;span id=&quot;pollAnswer2&quot;&gt;&lt;/span&gt;
            &lt;/li&gt;
            &lt;li class=&quot;pollChart pollChart2&quot;&gt;&lt;/li&gt;
        &lt;/ul&gt;
        &lt;input name=&quot;pollSubmit&quot; id=&quot;pollSubmit&quot; value=&quot;Vote&quot; type=&quot;submit&quot;&gt;
        &lt;span id=&quot;pollMessage&quot;&gt;&lt;/span&gt;
        &lt;img src=&quot;ajaxLoader.gif&quot; alt=&quot;Ajax Loader&quot; id=&quot;pollAjaxLoader&quot;&gt;
    &lt;/form&gt;
&lt;/div&gt;
</pre>
</p>
<p>There is nothing original here. In one of the list items, we mention the answer and provide a unique ID for it which matches that answer&#39;s answerID in the database. For the other list item, we reserve it for the colored line, again by giving it the unique ID.</p>
<h3>PHP</h3>
<p>We first include our db connection file and handle the posted items from the Ajax requests</p>
<p><pre class="brush: php">
require(&quot;db.php&quot;);
//GETTING VARIABLES START
$action 		= mysql_real_escape_string($_POST[&#039;action&#039;]);
$pollAnswerID	= mysql_real_escape_string($_POST[&#039;pollAnswerID&#039;]);
//GETTING VARIABLES END
</pre>
</p>
<p>After that, create the function <code>getPoll</code> which simply loops through the database and creates the HTML for the poll mentioned above.</p>
<p><pre class="brush: php">
function getPoll($pollID){
	$query  = &quot;SELECT * FROM polls LEFT JOIN pollAnswers ON polls.pollID = pollAnswers.pollID WHERE polls.pollID = &quot; . $pollID . &quot; ORDER By pollAnswerListing ASC&quot;;
	$result = mysql_query($query);
	//echo $query;jquery

	while($row = mysql_fetch_array($result, MYSQL_ASSOC))
	{
		$pollQuestion 		= $row[&#039;pollQuestion&#039;];
		$pollAnswerID 		= $row[&#039;pollAnswerID&#039;];
		$pollAnswerValue	= $row[&#039;pollAnswerValue&#039;];

		if ($pollStartHtml == &#039;&#039;) {
			$pollStartHtml 	= &#039;&lt;div id=&quot;pollWrap&quot;&gt;&lt;form name=&quot;pollForm&quot; method=&quot;post&quot; action=&quot;inc/functions.php?action=vote&quot;&gt;&lt;h3&gt;&#039; . $pollQuestion .&#039;&lt;/h3&gt;&lt;ul&gt;&#039;;
			$pollEndHtml 	= &#039;&lt;/ul&gt;&lt;input type=&quot;submit&quot; name=&quot;pollSubmit&quot; id=&quot;pollSubmit&quot; value=&quot;Vote&quot; /&gt; &lt;span id=&quot;pollMessage&quot;&gt;&lt;/span&gt;&lt;img src=&quot;ajaxLoader.gif&quot; alt=&quot;Ajax Loader&quot; id=&quot;pollAjaxLoader&quot; /&gt;&lt;/form&gt;&lt;/div&gt;&#039;;
		}
		$pollAnswersHtml	= $pollAnswersHtml . &#039;&lt;li&gt;&lt;input name=&quot;pollAnswerID&quot; id=&quot;pollRadioButton&#039; . $pollAnswerID . &#039;&quot; type=&quot;radio&quot; value=&quot;&#039; . $pollAnswerID . &#039;&quot; /&gt; &#039; . $pollAnswerValue .&#039;&lt;span id=&quot;pollAnswer&#039; . $pollAnswerID . &#039;&quot;&gt;&lt;/span&gt;&lt;/li&gt;&#039;;
		$pollAnswersHtml	= $pollAnswersHtml . &#039;&lt;li class=&quot;pollChart pollChart&#039; . $pollAnswerID . &#039;&quot;&gt;&lt;/li&gt;&#039;;
	}
	echo $pollStartHtml . $pollAnswersHtml . $pollEndHtml;
}
</pre>
</p>
<p>This <code>getPollID</code> function below is for easily getting the ID of the related polls by providing an answerID:</p>
<p><pre class="brush: php">
function getPollID($pollAnswerID){
	$query  = &quot;SELECT pollID FROM pollAnswers WHERE pollAnswerID = &quot;.$pollAnswerID.&quot; LIMIT 1&quot;;
	$result = mysql_query($query);
	$row = mysql_fetch_array($result);

	return $row[&#039;pollID&#039;];
}
</pre>
</p>
<p>And, the getPollResults function which is kinda tricky but not that much.</p>
<p>When ran, it returns a string like: 1|13|#ffcc00-2|32|#00ff00-3|18|#cc0000-63&quot; which the first number is the answerID, second is the points it has and third is the color for that answer&#39;s animated line.</p>
<p>The last number is the sum of all points for easily calculating percentages.</p>
<p>The <strong>string is parsed in the JavaScript side</strong> later on.</p>
<p><pre class="brush: php">
function getPollResults($pollID){
	$colorArray = array(1 =&gt; &quot;#ffcc00&quot;, &quot;#00ff00&quot;, &quot;#cc0000&quot;, &quot;#0066cc&quot;, &quot;#ff0099&quot;, &quot;#ffcc00&quot;, &quot;#00ff00&quot;, &quot;#cc0000&quot;, &quot;#0066cc&quot;, &quot;#ff0099&quot;);
	$colorCounter = 1;
	$query  = &quot;SELECT pollAnswerID, pollAnswerPoints FROM pollAnswers WHERE pollID = &quot;.$pollID.&quot;&quot;;
	$result = mysql_query($query);
	while($row = mysql_fetch_array($result))
	{
		if ($pollResults == &quot;&quot;) {
			$pollResults = $row[&#039;pollAnswerID&#039;] . &quot;|&quot; . $row[&#039;pollAnswerPoints&#039;] . &quot;|&quot; . $colorArray[$colorCounter];
		} else {
			$pollResults = $pollResults . &quot;-&quot; . $row[&#039;pollAnswerID&#039;] . &quot;|&quot; . $row[&#039;pollAnswerPoints&#039;] . &quot;|&quot; . $colorArray[$colorCounter];
		}
		$colorCounter = $colorCounter + 1;
	}
	$query  = &quot;SELECT SUM(pollAnswerPoints) FROM pollAnswers WHERE pollID = &quot;.$pollID.&quot;&quot;;
	$result = mysql_query($query);
	$row = mysql_fetch_array( $result );
	$pollResults = $pollResults . &quot;-&quot; . $row[&#039;SUM(pollAnswerPoints)&#039;];
	echo $pollResults;
}
</pre>
</p>
<p>The last PHP code is the voting part which also sets a cookie:</p>
<p><pre class="brush: php">
if ($action == &quot;vote&quot;){

	if (isset($_COOKIE[&quot;poll&quot; . getPollID($pollAnswerID)])) {
		echo &quot;voted&quot;;
	} else {
		$query  = &quot;UPDATE pollAnswers SET pollAnswerPoints = pollAnswerPoints + 1 WHERE pollAnswerID = &quot;.$pollAnswerID.&quot;&quot;;
		mysql_query($query) or die(&#039;Error, insert query failed&#039;);
		setcookie(&quot;poll&quot; . getPollID($pollAnswerID), 1, time()+259200, &quot;/&quot;, &quot;.webresourcesdepot.com&quot;);
		getPollResults(1);
	}
}
</pre>
</p>
<h3>jQuery (JavaScript)</h3>
<p>It is only an Ajax request that posts the selected answer to the PHP code, gets the string in return, parses it and makes some show/hide tricks for displaying and hiding the messages or loaders.</p>
<p>Here it is:</p>
<p><pre class="brush: javascript">
$(document).ready(function() {   

	$(&quot;#pollAjaxLoader&quot;).hide(); //hide the ajax loader
	$(&quot;#pollMessage&quot;).hide(); //hide the ajax loader
	$(&quot;#pollSubmit&quot;).click(function() {
		var pollAnswerVal = $(&#039;input:radio[name=pollAnswerID]:checked&#039;).val();//Getting the value of a selected radio element.
		if ($(&#039;input:radio[name=pollAnswerID]:checked&#039;).length) {
			$(&quot;#pollAjaxLoader&quot;).show(); //show the ajax loader
			$.ajax({
				type: &quot;POST&quot;,
				url: &quot;inc/functions.php&quot;,
				data: { pollAnswerID: pollAnswerVal, action: &quot;vote&quot; },
				success: function(theResponse) {
					//the functions.php returns a response like &quot;1|13|#ffcc00-2|32|#00ff00-3|18|#cc0000-63&quot; which the first number is the answerID, second is the points it has and third is the color for that answer&#039;s graph. The last number is the sum of all points for easilt calculating percentages.
					if (theResponse == &quot;voted&quot;) {
						$(&quot;#pollAjaxLoader&quot;).hide(); //hide the ajax loader
						$(&quot;#pollMessage&quot;).html(&quot;sorry, you already voted.&quot;).fadeTo(&quot;slow&quot;, 1);
					} else {
						var numberOfAnswers 		= (theResponse).split(&quot;-&quot;).length-2;//calculate the number of answers
						var splittedResponse 		= (theResponse).split(&quot;-&quot;);
						var pollAnswerTotalPoints 	= splittedResponse[numberOfAnswers+1];

						for (i=0;i&lt;=numberOfAnswers;i++)
						{
							var splittedAnswer 		= (splittedResponse[i]).split(&quot;|&quot;);
							var pollAnswerID 		= (splittedAnswer[0]);
							var pollAnswerPoints 	= (splittedAnswer[1]);
							var pollAnswerColor 	= (splittedAnswer[2]);
							var pollPercentage		= (100 * pollAnswerPoints / pollAnswerTotalPoints);
							$(&quot;.pollChart&quot; + pollAnswerID).css(&quot;background-color&quot;,pollAnswerColor);
							$(&quot;.pollChart&quot; + pollAnswerID).animate({width:pollPercentage + &quot;%&quot;});
							$(&quot;#pollAnswer&quot; + pollAnswerID).html(&quot; (&quot; + Math.round(pollPercentage) + &quot;% - &quot; + pollAnswerPoints + &quot; votes)&quot;);
							$(&quot;#pollRadioButton&quot; + pollAnswerID).attr(&quot;disabled&quot;, &quot;disabled&quot;); //disable the radio buttons
						}
						$(&quot;#pollAjaxLoader&quot;).hide(); //hide the ajax loader again
						$(&quot;#pollSubmit&quot;).attr(&quot;disabled&quot;, &quot;disabled&quot;); //disable the submit button
					}
				}
			});
			return false; 

		} else {
			$(&quot;#pollMessage&quot;).html(&quot;please select an answer.&quot;).fadeTo(&quot;slow&quot;, 1, function(){
				setTimeout(function() {
					$(&quot;#pollMessage&quot;).fadeOut(&quot;slow&quot;);
				}, 3000);
			});
			return false;
		}

	});

});
</pre>
</p>
<p>The JavaScript code is well-commented and is pretty self-explanatory. Don&#39;t let the number of lines afraid you, most of them are just the make-up.</p>
<p>That&#39;s all.</p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=jBasket" target="_blank">Ajaxed Add-To-Basket Scenarios With jQuery And PHP</a><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.admintemplates.com" target="_blank">Professional XHTML Admin Template ($15 Discount With The Code: WRD.)</a><br />
<a href="http://www.xhtmchop.com" target="_blank">Psd to Xhtml</a><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic &#8211; Cheap SSL Certificates (from $19.99/year)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/ajax-poll-script-with-php-mysql-jquery/feed/</wfw:commentRss>
		<slash:comments>70</slash:comments>
		</item>
		<item>
		<title>Ajaxed PHP Library For Creating Quizzes: quizzy</title>
		<link>http://www.webresourcesdepot.com/ajaxed-php-library-for-creating-quizzes-quizzy/</link>
		<comments>http://www.webresourcesdepot.com/ajaxed-php-library-for-creating-quizzes-quizzy/#comments</comments>
		<pubDate>Mon, 03 May 2010 07:47:07 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
				<category><![CDATA[GPL License]]></category>
		<category><![CDATA[Goodies]]></category>
		<category><![CDATA[Polls & Surveys]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=1622</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=1622&c=7252' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=1622&c=7252' border='0' alt='' /></a></p><p><a href='http://buysellads.com/buy/sitedetails/pubkey/ed230295611f656daf3115e6d682ca7d/zone/1259982' target='_blank'>Advertise here with BSA</a></p><br />quizzy is an open source PHP-Ajax library for creating online multiple-choice quizzes. It uses XML files for configuring the questions/answers of every quiz where each question and answer can have a true/false or a point value. All data is loaded via Ajax which makes it impossible to view the future questions or answers of them [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=1622&c=5823' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=1622&c=5823' border='0' alt='' /></a></p><p><a href='http://buysellads.com/buy/sitedetails/pubkey/ed230295611f656daf3115e6d682ca7d/zone/1259982' target='_blank'>Advertise here with BSA</a></p><br /><p><a href="http://quizzy.sourceforge.net/" target="_blank"><strong>quizzy</strong></a> is an open source <strong>PHP-Ajax library</strong> for creating <strong>online multiple-choice quizzes</strong>.</p>
<p>It <strong>uses XML files</strong> for configuring the questions/answers of every quiz where each question and answer can have a true/false or a point value.</p>
<p><strong>All data is loaded via Ajax</strong> which makes it impossible to view the future questions or answers of them inside the source.</p>
<p><a href="http://quizzy.sourceforge.net/" target="_blank"><img alt="quizzy" height="169" src="http://www.webresourcesdepot.com/wp-content/uploads/quizzy.gif" width="480" /></a></p>
<p>Questions can have an explanation text once an answer is submitted. And also, images can be used within questions and answers.</p>
<p>After the quiz is completed, it displays your calculated score and grade (optionally, with an image for every grade).</p>
<p>There is also an <a href="http://quizzy.sourceforge.net/quizzyBuilder/index.php" target="_blank"><strong>online quizzy builder</strong></a>, an online form which helps you creating the XML files easily.</p>
<p><strong>quizzy</strong> uses <strong>jQuery</strong> and the <a href="http://plugins.jquery.com/project/loading" target="_blank">jQuery loader plugin</a> for notifying users in every Ajax request.</p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=jBasket" target="_blank">Ajaxed Add-To-Basket Scenarios With jQuery And PHP</a><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.admintemplates.com" target="_blank">Professional XHTML Admin Template ($15 Discount With The Code: WRD.)</a><br />
<a href="http://www.xhtmchop.com" target="_blank">Psd to Xhtml</a><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic &#8211; Cheap SSL Certificates (from $19.99/year)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/ajaxed-php-library-for-creating-quizzes-quizzy/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Free Flash-XML Survey With Multiple Questions</title>
		<link>http://www.webresourcesdepot.com/free-flash-xml-survey-with-multiple-questions/</link>
		<comments>http://www.webresourcesdepot.com/free-flash-xml-survey-with-multiple-questions/#comments</comments>
		<pubDate>Fri, 05 Jun 2009 17:01:21 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Goodies]]></category>
		<category><![CDATA[Other License]]></category>
		<category><![CDATA[Polls & Surveys]]></category>
		<category><![CDATA[SWF]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=982</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=982&c=27255' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=982&c=27255' border='0' alt='' /></a></p><p><a href='http://buysellads.com/buy/sitedetails/pubkey/ed230295611f656daf3115e6d682ca7d/zone/1259982' target='_blank'>Advertise here with BSA</a></p><br />Flabell is presenting another handy resource for creating Flash-XML based survey with multiple questions. An unlimited number of questions &#38; a variable number of answers can be added by simply editing the XML file. When users select an answer, they can pass to the next question &#38; all answers are stored inside the XML file [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=982&c=17687' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=982&c=17687' border='0' alt='' /></a></p><p><a href='http://buysellads.com/buy/sitedetails/pubkey/ed230295611f656daf3115e6d682ca7d/zone/1259982' target='_blank'>Advertise here with BSA</a></p><br /><p><strong>Flabell</strong> is presenting another handy resource for creating <a target="_blank" href="http://www.flabell.com/flash/XML-Survey-with-multiple-questions-173?referral=1156"><strong>Flash-XML based survey with multiple questions</strong></a>.</p>
<p>An <strong>unlimited number of questions</strong> &amp; a <strong>variable number of answers</strong> can be added by simply editing the XML file.</p>
<p>When users select an answer, they can pass to the next question &amp; all answers are stored inside the XML file for visualizing them later (not included within the code).</p>
<p><a target="_blank" href="http://www.flabell.com/flash/XML-Survey-with-multiple-questions-173?referral=1156"><img width="480" height="188" alt="Free Flash XML Survey" src="http://www.webresourcesdepot.com/wp-content/uploads/image/free-flash-xml-poll.gif" /></a></p>
<p><strong>P.S.</strong> Download requires a free membership.</p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=jBasket" target="_blank">Ajaxed Add-To-Basket Scenarios With jQuery And PHP</a><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.admintemplates.com" target="_blank">Professional XHTML Admin Template ($15 Discount With The Code: WRD.)</a><br />
<a href="http://www.xhtmchop.com" target="_blank">Psd to Xhtml</a><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic &#8211; Cheap SSL Certificates (from $19.99/year)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/free-flash-xml-survey-with-multiple-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Free Flash-XML Poll Component</title>
		<link>http://www.webresourcesdepot.com/free-flash-xml-poll-component/</link>
		<comments>http://www.webresourcesdepot.com/free-flash-xml-poll-component/#comments</comments>
		<pubDate>Wed, 06 May 2009 17:19:03 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[Goodies]]></category>
		<category><![CDATA[Other License]]></category>
		<category><![CDATA[Polls & Surveys]]></category>
		<category><![CDATA[SWF]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=935</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=935&c=6094' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=935&c=6094' border='0' alt='' /></a></p><p><a href='http://buysellads.com/buy/sitedetails/pubkey/ed230295611f656daf3115e6d682ca7d/zone/1259982' target='_blank'>Advertise here with BSA</a></p><br />XML Flash Voting Poll is a free component for creating nice looking Flash-based polls. It is built with AS3 &#38; supports one active poll with an unlimited number of answers. Many variables can be controlled in the XML files like: the question&#8217;s height, text, color, size background colors used distances between items messages displayed after [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=935&c=3092' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=935&c=3092' border='0' alt='' /></a></p><p><a href='http://buysellads.com/buy/sitedetails/pubkey/ed230295611f656daf3115e6d682ca7d/zone/1259982' target='_blank'>Advertise here with BSA</a></p><br /><p><a href="http://www.flabell.com/flash/XML-Flash-Voting-Poll-39?referral=1156" target="_blank"><strong>XML Flash Voting Poll</strong></a> is a free component for creating nice looking <strong>Flash-based polls</strong>.</p>
<p>It is built with <strong>AS3</strong> &amp; supports one active poll with an unlimited number of answers.</p>
<p><a href="http://www.flabell.com/flash/XML-Flash-Voting-Poll-39?referral=1156" target="_blank"><img width="480" height="119" src="http://www.webresourcesdepot.com/wp-content/uploads/image/free-flash-poll.jpg" alt="Free Flash Poll" /></a></p>
<p>Many variables can be controlled in the XML files like:</p>
<ul>
<li>the question&rsquo;s height, text, color, size</li>
<li>background colors used</li>
<li>distances between items</li>
<li>messages displayed after voting &amp; more</li>
</ul>
<p>The download package includes images (.AI &amp; .PDF) &amp; fonts used.</p>
<p><strong>P.S.</strong> Free membership is required for downloading the component.</p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=jBasket" target="_blank">Ajaxed Add-To-Basket Scenarios With jQuery And PHP</a><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.admintemplates.com" target="_blank">Professional XHTML Admin Template ($15 Discount With The Code: WRD.)</a><br />
<a href="http://www.xhtmchop.com" target="_blank">Psd to Xhtml</a><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic &#8211; Cheap SSL Certificates (from $19.99/year)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/free-flash-xml-poll-component/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Beautiful And Free Ajax Poll Script</title>
		<link>http://www.webresourcesdepot.com/beautiful-and-free-ajax-poll-script/</link>
		<comments>http://www.webresourcesdepot.com/beautiful-and-free-ajax-poll-script/#comments</comments>
		<pubDate>Sat, 10 Jan 2009 08:30:18 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
				<category><![CDATA[Goodies]]></category>
		<category><![CDATA[Other License]]></category>
		<category><![CDATA[Polls & Surveys]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=734</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=734&c=28018' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=734&c=28018' border='0' alt='' /></a></p><p><a href='http://buysellads.com/buy/sitedetails/pubkey/ed230295611f656daf3115e6d682ca7d/zone/1259982' target='_blank'>Advertise here with BSA</a></p><br />Dracon Ajax Poll is a free PHP-MySQL-Ajax poll script which is simply beautiful. The script is totally skinnable, has multi-language support &#38; can also use XML as the data source rather than MySQL. Once an option is voted, total votes are displayed with a charming effect. It records the IPs used in order to prevent [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=734&c=17524' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=734&c=17524' border='0' alt='' /></a></p><p><a href='http://buysellads.com/buy/sitedetails/pubkey/ed230295611f656daf3115e6d682ca7d/zone/1259982' target='_blank'>Advertise here with BSA</a></p><br /><p><a target="_blank" href="http://www.dracon.biz/dracon_poll.php"><strong>Dracon Ajax Poll</strong></a> is a <strong>free PHP-MySQL-Ajax poll script</strong> which is simply beautiful.</p>
<p>The script is totally skinnable, has multi-language support &amp; can also use <strong>XML</strong> as the data source rather than <strong>MySQL</strong>.</p>
<p><a target="_blank" href="http://www.dracon.biz/dracon_poll.php"><img height="155" width="480" alt="Free Ajax Poll Script" src="http://www.webresourcesdepot.com/wp-content/uploads/image/free-ajax-poll.gif" /></a></p>
<p>Once an option is voted, total votes are displayed with a charming effect.</p>
<p>It records the IPs used in order to prevent repeated-votes as a security measure.</p>
<p><a target="_blank" href="http://www.dracon.biz/dracon_poll.php"><img height="133" width="480" alt="Ajax Poll Admin" src="http://www.webresourcesdepot.com/wp-content/uploads/image/ajax-poll-admin.gif" /></a></p>
<p>At the backend, there is again a totally <strong>Ajaxed admin interface</strong> which is easy to use.</p>
<p>It is possible to add unlimited polls &amp; unlimited options to any poll, edit &amp; delete them.</p>
<p><strong>P.S.</strong> The script is free once a backlink is kept.</p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=jBasket" target="_blank">Ajaxed Add-To-Basket Scenarios With jQuery And PHP</a><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.admintemplates.com" target="_blank">Professional XHTML Admin Template ($15 Discount With The Code: WRD.)</a><br />
<a href="http://www.xhtmchop.com" target="_blank">Psd to Xhtml</a><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic &#8211; Cheap SSL Certificates (from $19.99/year)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/beautiful-and-free-ajax-poll-script/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free PHP &#8211; Ajax Poll Script: Zoki Poll</title>
		<link>http://www.webresourcesdepot.com/free-php-ajax-poll-script-zoki-poll/</link>
		<comments>http://www.webresourcesdepot.com/free-php-ajax-poll-script-zoki-poll/#comments</comments>
		<pubDate>Fri, 15 Aug 2008 05:01:31 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
				<category><![CDATA[Goodies]]></category>
		<category><![CDATA[Other License]]></category>
		<category><![CDATA[Polls & Surveys]]></category>
		<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=460</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=460&c=27917' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=460&c=27917' border='0' alt='' /></a></p><p><a href='http://buysellads.com/buy/sitedetails/pubkey/ed230295611f656daf3115e6d682ca7d/zone/1259982' target='_blank'>Advertise here with BSA</a></p><br />Zoki Poll is a free PHP &#8211; Ajax poll script that stores data in a XML file. It has flexible display options for integrating the poll in limited spaces like horizontal scrolling long question &#38; answers or vertical scrolling of answers. Vote results are displayed with a nice, animated percentage bar &#38; the look of [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=460&c=19860' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=460&c=19860' border='0' alt='' /></a></p><p><a href='http://buysellads.com/buy/sitedetails/pubkey/ed230295611f656daf3115e6d682ca7d/zone/1259982' target='_blank'>Advertise here with BSA</a></p><br /><p><a target="_blank" href="http://www.zokisoft.com/products/zoki-poll"><strong>Zoki Poll</strong></a> is a <strong>free PHP &#8211; Ajax poll script</strong> that stores data in a XML file.</p>
<p><a target="_blank" href="http://www.zokisoft.com/products/zoki-poll"><img height="280" align="left" width="250" style="margin-right: 5px;" alt="Free Ajax PHP Poll" src="http://www.webresourcesdepot.com/wp-content/uploads/image/free-ajax-php-poll.jpg" /></a>It has flexible display options for integrating the poll in limited spaces like horizontal scrolling long question &amp; answers or vertical scrolling of answers.</p>
<p>Vote results are displayed with a nice, <strong>animated percentage bar</strong> &amp; the look of the poll can be easily changed via CSS.</p>
<p>To prevent duplicate voting, <strong>Zoki Poll</strong> has a cookie-based protection system.</p>
<p>This <strong>Ajax poll script</strong> does not have an administration interface &amp; it is a nice piece of code if you&#8217;re ready to integrate it yourself.</p>
<p>P.S. Downloading the script requires free registration.</p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=jBasket" target="_blank">Ajaxed Add-To-Basket Scenarios With jQuery And PHP</a><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.admintemplates.com" target="_blank">Professional XHTML Admin Template ($15 Discount With The Code: WRD.)</a><br />
<a href="http://www.xhtmchop.com" target="_blank">Psd to Xhtml</a><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic &#8211; Cheap SSL Certificates (from $19.99/year)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/free-php-ajax-poll-script-zoki-poll/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Open Source PHP Surveys: LimeSurvey</title>
		<link>http://www.webresourcesdepot.com/open-source-php-surveys-limesurvey/</link>
		<comments>http://www.webresourcesdepot.com/open-source-php-surveys-limesurvey/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 05:01:35 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
				<category><![CDATA[GPL License]]></category>
		<category><![CDATA[Goodies]]></category>
		<category><![CDATA[Polls & Surveys]]></category>
		<category><![CDATA[Mysql]]></category>
		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=415</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=415&c=13175' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=415&c=13175' border='0' alt='' /></a></p><p><a href='http://buysellads.com/buy/sitedetails/pubkey/ed230295611f656daf3115e6d682ca7d/zone/1259982' target='_blank'>Advertise here with BSA</a></p><br />LimeSurvey is an open source PHP survey application which has almost every feature you may need. It enables you to create conditional (questions change depending on the previous answers), open/close group surveys with e-mail invitations, reminders &#38; more. This PHP survey application is completely multilingual and currently supports 46 languages. Any survey can be created [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=415&c=26647' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=415&c=26647' border='0' alt='' /></a></p><p><a href='http://buysellads.com/buy/sitedetails/pubkey/ed230295611f656daf3115e6d682ca7d/zone/1259982' target='_blank'>Advertise here with BSA</a></p><br /><p><a href="http://www.limesurvey.org" target="_blank"><strong>LimeSurvey</strong></a> is an <strong>open source PHP survey application</strong> which has almost every feature you may need.</p>
<p>It enables you to create conditional (questions change depending on the previous answers), open/close group surveys with e-mail invitations, reminders &amp; more.</p>
<p><a href="http://www.limesurvey.org" target="_blank"><br />
<input height="135" width="480" type="image" src="http://www.webresourcesdepot.com/wp-content/uploads/image/php-survey-script.gif" alt="PHP Survey Script" /></a></p>
<p>This <strong>PHP survey application</strong> is completely multilingual and currently supports 46 languages. Any survey can be created to support more than 1 language.</p>
<p>Templates can be created and any survey can be choosen to work with that template to match the design of the websites.</p>
<h3>Some features of LimeSurvey:</h3>
<ul>
<li>Unlimited number of surveys at the same time</li>
<li>Unlimited number of questions in a survey</li>
<li>Unlimited number of participants to a survey</li>
<li>Multi-Lingual Surveys</li>
<li>User-Management</li>
<li>20 different question types with more to come</li>
<li>WYSIWYG HTML Editor</li>
<li>Quotas Management</li>
<li>Integration of pictures and movies into a survey</li>
<li>Creation of a printable survey version</li>
<li>Option for participants to buffer answers to continue survey at a later time</li>
<li>Survey expiry dates for automation</li>
<li>Enhanced import and export functions to text, CSV, PDF, SPSS, queXML and MS Excel format</li>
<li>Basic statistical and graphical analysis with export facility</li>
<li>Screen Reader Accessiblity</li>
<li>W3C compliance</li>
</ul>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=jBasket" target="_blank">Ajaxed Add-To-Basket Scenarios With jQuery And PHP</a><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.admintemplates.com" target="_blank">Professional XHTML Admin Template ($15 Discount With The Code: WRD.)</a><br />
<a href="http://www.xhtmchop.com" target="_blank">Psd to Xhtml</a><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic &#8211; Cheap SSL Certificates (from $19.99/year)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/open-source-php-surveys-limesurvey/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Free Survey Application: AskPeople</title>
		<link>http://www.webresourcesdepot.com/free-survey-application-askpeople/</link>
		<comments>http://www.webresourcesdepot.com/free-survey-application-askpeople/#comments</comments>
		<pubDate>Tue, 15 Jul 2008 05:01:44 +0000</pubDate>
		<dc:creator>Umut M.</dc:creator>
				<category><![CDATA[CC License]]></category>
		<category><![CDATA[Goodies]]></category>
		<category><![CDATA[Polls & Surveys]]></category>
		<category><![CDATA[Php]]></category>

		<guid isPermaLink="false">http://www.webresourcesdepot.com/?p=401</guid>
		<description><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=401&c=24906' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=401&c=24906' border='0' alt='' /></a></p><p><a href='http://buysellads.com/buy/sitedetails/pubkey/ed230295611f656daf3115e6d682ca7d/zone/1259982' target='_blank'>Advertise here with BSA</a></p><br />AskPeople is a free PHP survey application that is simple but functional. It supports most of the entry options with checkboxes, radio buttons, textboxes, textareas &#38;&#160; dropdowns. Using AskPeople, a complicated survey can be created in minutes. AskPeople has a template system where a new design can be implemented for the surveys to match the [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://rss.buysellads.com/click.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=401&c=4779' target='_blank'><img src='http://rss.buysellads.com/img.php?z=1259982&k=ed230295611f656daf3115e6d682ca7d&a=401&c=4779' border='0' alt='' /></a></p><p><a href='http://buysellads.com/buy/sitedetails/pubkey/ed230295611f656daf3115e6d682ca7d/zone/1259982' target='_blank'>Advertise here with BSA</a></p><br /><p><a href="http://www.askpeople.co.uk/" target="_blank"><strong>AskPeople</strong></a> is a <strong>free PHP survey application</strong> that is simple but functional.</p>
<p>It supports most of the entry options with checkboxes, radio buttons, textboxes, textareas &amp;&nbsp; dropdowns. Using <strong>AskPeople</strong>, a complicated survey can be created in minutes.</p>
<p><a href="http://www.askpeople.co.uk/" target="_blank"><img height="176" width="480" src="http://www.webresourcesdepot.com/wp-content/uploads/image/free-php-survey.jpg" alt="Free PHP Survey" /></a></p>
<p><strong>AskPeople</strong> has a template system where a new design can be implemented for the surveys to match the look of your website.</p>
<h3>Some features of this free PHP survey application:</h3>
<ul>
<li>Secure, multi-user admin interface.</li>
<li>Unlimited, completely flexible templates.</li>
<li>Built in file manager.</li>
<li>Multipage surveys using pagebreaks between groups of questions.</li>
<li>Make any question &#8216;required&#8217; to ensure respondents complete it.</li>
<li>Optional cookie-based protection against repeated submission of forms.</li>
<li>Plain-text questionnaire export.</li>
<li>Raw data editor.</li>
<li>One-click project backup.</li>
</ul>
<p>This is a handy application for creating &amp; managing a job application form or making a market research &amp; more.</p>
<p><strong>Special Downloads:</strong><br />
<a href="http://www.webresourcesdepot.com/?download=jBasket" target="_blank">Ajaxed Add-To-Basket Scenarios With jQuery And PHP</a><br />
<a href="http://www.webresourcesdepot.com/?download=Free-Admin-Template" target="_blank">Free Admin Template For Web Applications</a><br />
<a href="http://www.webresourcesdepot.com/?download=jQuery-Dynamic-Drag-Drop" target="_blank">jQuery Dynamic Drag&#8217;n Drop</a><br />
<a href="http://www.webresourcesdepot.com/?download=sTwitter-1-0" target="_blank">ScheduledTweets</a></p>
<p><strong>Advertisements:</strong><br />
<a href="http://www.admintemplates.com" target="_blank">Professional XHTML Admin Template ($15 Discount With The Code: WRD.)</a><br />
<a href="http://www.xhtmchop.com" target="_blank">Psd to Xhtml</a><br />
<a href="http://www.sslmatic.com" target="_blank">SSLmatic &#8211; Cheap SSL Certificates (from $19.99/year)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.webresourcesdepot.com/free-survey-application-askpeople/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using wincache
Page Caching using wincache (User agent is rejected)
Database Caching 4/13 queries in 0.074 seconds using wincache

Served from: www.webresourcesdepot.com @ 2012-02-12 15:46:33 -->
