<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "comments on advaced pool"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "comments on advaced pool"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>comments on advaced pool</title>
				<description><![CDATA[ you click send commend, but DONT SHOW THE COMMENTS<br /> <br /> how can I put all the comments bellow de pool???<br /> or a link to show???]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5238/19051.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5238/19051.php</link>
				<pubDate><![CDATA[Fri, 9 Dec 2005 21:13:15]]> GMT</pubDate>
				<author><![CDATA[ guilepoa]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ I'm having the exact same problem.  I would like to have this fixed ASAP! <br /> <br /> Here's a link: <a class="snap_shots" href="http://mansionofmetal.com/poll1.php" target="_blank" rel="nofollow">http://mansionofmetal.com/poll1.php</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5238/19234.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5238/19234.php</link>
				<pubDate><![CDATA[Sun, 1 Jan 2006 22:59:42]]> GMT</pubDate>
				<author><![CDATA[ bledsian]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ See Demos 2 and 4:<br /> [list][url]http://proxy2.de/poll/demo_2.php[/url]<br /> [url]http://proxy2.de/poll/demo_4.php[/url][/list]<br /> The code used for comments is shown on the left.  Customize it to fit your site:<br /> <br /> [code]/* path */<br /> $poll_path = &quot;/www/proxy2/html/poll&quot;;<br /> <br /> require $poll_path.&quot;/include/config.inc.php&quot;;<br /> require $poll_path.&quot;/include/$POLLDB&#91;class&#93;&quot;;<br /> require $poll_path.&quot;/include/class_poll.php&quot;;<br /> require $poll_path.&quot;/include/class_pollcomment.php&quot;;<br /> $CLASS&#91;&quot;db&quot;&#93; = new polldb_sql;<br /> $CLASS&#91;&quot;db&quot;&#93;-&gt;connect&#40;&#41;; <br /> <br /> $php_poll = new pollcomment&#40;&#41;;<br /> <br /> /* question */<br /> echo $php_poll-&gt;get_poll_question&#40;2&#41;;<br /> <br /> <br /> /* poll */<br /> $php_poll-&gt;set_template_set&#40;&quot;plain&quot;&#41;;<br /> $php_poll-&gt;set_max_bar_length&#40;125&#41;;<br /> $php_poll-&gt;set_max_bar_height&#40;10&#41;;<br /> echo $php_poll-&gt;poll_process&#40;2&#41;;<br /> <br /> <br /> /* construct the form */<br /> $php_poll-&gt;set_template&#40;&quot;poll_form&quot;&#41;;<br /> $php_poll-&gt;set_form_error&#40;array&#40;<br />     &quot;name&quot; =&gt; &quot;Please enter your name.&quot;,<br /> // &quot;email&quot; =&gt; &quot;You must specify your e-mail address.&quot;,<br />     &quot;message&quot; =&gt; &quot;You must specify a message.&quot;<br /> &#41;&#41;;<br /> $html_form = $php_poll-&gt;comment_process&#40;2&#41;;<br /> <br /> <br /> /* poll comments */<br /> $php_poll-&gt;set_template&#40;&quot;poll_comment&quot;&#41;;<br /> $php_poll-&gt;set_comments_per_page&#40;5&#41;;<br /> $php_poll-&gt;set_date_format&#40;&quot;d/m/Y H&#58;i&quot;&#41;;<br /> $php_poll-&gt;data_order_by&#40;&quot;time&quot;,&quot;desc&quot;&#41;;<br /> echo $php_poll-&gt;view_poll_comments&#40;1&#41;;<br /> echo $php_poll-&gt;get_comment_pages&#40;1&#41;; [/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5238/19294.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5238/19294.php</link>
				<pubDate><![CDATA[Mon, 9 Jan 2006 03:12:11]]> GMT</pubDate>
				<author><![CDATA[ amber222]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ EDITED:<br /> <br /> Ok,<br /> I'm trying to show the comments under the poll but it doesn't want to work. This is the location of the poll. <br /> <br /> http://www.radioavivamiento.com/topten.php<br /> <br /> Tha poll has atleast 3 comments and none are showing.<br /> <br /> Could you take a look at the code and let me know if it's correct.<br /> [code]<br /> &lt;?php<br /> <br /> /* path */<br /> $poll_path = &quot;/path/to/html/poll&quot;;<br /> <br /> require $poll_path.&quot;/include/config.inc.php&quot;;<br /> require $poll_path.&quot;/include/$POLLDB&#91;class&#93;&quot;;<br /> require $poll_path.&quot;/include/class_poll.php&quot;;<br /> require $poll_path.&quot;/include/class_pollcomment.php&quot;;<br /> $CLASS&#91;&quot;db&quot;&#93; = new polldb_sql;<br /> $CLASS&#91;&quot;db&quot;&#93;-&gt;connect&#40;&#41;;<br /> <br /> $php_poll = new pollcomment&#40;&#41;;<br /> <br /> /* poll */<br /> $php_poll-&gt;set_template_set&#40;&quot;default&quot;&#41;;<br /> $php_poll-&gt;set_max_bar_length&#40;125&#41;;<br /> $php_poll-&gt;set_max_bar_height&#40;10&#41;;<br /> echo $php_poll-&gt;poll_process&#40;newest&#41;;<br /> <br /> <br /> /* poll comments */<br /> $php_poll-&gt;set_template&#40;&quot;poll_comment&quot;&#41;;<br /> $php_poll-&gt;set_comments_per_page&#40;5&#41;;<br /> $php_poll-&gt;set_date_format&#40;&quot;d/m/Y H&#58;i&quot;&#41;;<br /> $php_poll-&gt;data_order_by&#40;&quot;time&quot;,&quot;desc&quot;&#41;;<br /> echo $php_poll-&gt;view_poll_comments&#40;1&#41;;<br /> echo $php_poll-&gt;get_comment_pages&#40;1&#41;;<br /> <br /> ?&gt;<br /> [/code]]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5238/19580.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5238/19580.php</link>
				<pubDate><![CDATA[Thu, 9 Feb 2006 00:06:50]]> GMT</pubDate>
				<author><![CDATA[ ProSam]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ for view_poll_comments and get_comment_pages set them to "newest" as you have done for poll_process.<br /> <br /> edit: not sure about get_comment_pages actually try it with 1 first.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5238/19581.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5238/19581.php</link>
				<pubDate><![CDATA[Thu, 9 Feb 2006 01:18:25]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ [quote="Auron"]for view_poll_comments and get_comment_pages set them to "newest" as you have done for poll_process.<br /> <br /> edit: not sure about get_comment_pages actually try it with 1 first.[/quote]<br /> Thanks for the help Auron. It didn't work either way.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5238/19582.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5238/19582.php</link>
				<pubDate><![CDATA[Thu, 9 Feb 2006 04:27:53]]> GMT</pubDate>
				<author><![CDATA[ ProSam]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ try this if nth works:<br /> <br /> echo $php_poll-&gt;view_poll_comments(1);<br /> echo $php_poll-&gt;view_poll_comments(2);<br /> echo $php_poll-&gt;view_poll_comments(3);<br /> echo $php_poll-&gt;view_poll_comments(4);]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5238/20317.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5238/20317.php</link>
				<pubDate><![CDATA[Thu, 27 Apr 2006 10:40:08]]> GMT</pubDate>
				<author><![CDATA[ shachi]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Where are the tutorials for this program? I ask because the HELP within the program leads me in circles and on this site I only find these forums. If there is a FAQ or TUTORIALS section I'd be glad to see it please. The program is not intuitive in its implementation and I'd love to use it if at all possible.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/5238/20323.php</guid>
				<link>https://proxy2.de/forum/posts/preList/5238/20323.php</link>
				<pubDate><![CDATA[Thu, 27 Apr 2006 13:59:30]]> GMT</pubDate>
				<author><![CDATA[ tekky]]></author>
			</item>
	</channel>
</rss>