<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Advanced Guestbook--Quick couple of questions"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "Advanced Guestbook--Quick couple of questions"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Advanced Guestbook--Quick couple of questions</title>
				<description><![CDATA[ First I would like to say how much I love the work you put into this fabulous guestbook. I can't find anywhere to donate you money for this. I can't accept this much work for free. Where may I send you a donation?<br /> <br /> Second I would like to ask. In the guestbook on the top right there is a pull down menu that only has "Guestbook" as a selection. I would like to add other links on my website to this menu if possible but I can't find where to edit it. Your help would be appreciated.<br /> <br /> Thank you ever so much.<br /> <br /> Tom S.<br /> <a class="snap_shots" href="http://kischat.com" target="_blank" rel="nofollow">http://kischat.com</a>]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2330/6147.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2330/6147.php</link>
				<pubDate><![CDATA[Tue, 2 Sep 2003 23:45:35]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Guess I don't rate</title>
				<description><![CDATA[ Guess I don't qualify for an answer...<br /> Oh well  <img src="https://proxy2.de/forum//images/smilies/9d71f0541cff0a302a0309c5079e8dee.gif" />]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2330/6158.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2330/6158.php</link>
				<pubDate><![CDATA[Wed, 3 Sep 2003 22:29:16]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Try <a class="snap_shots" href="http://spisas.com/" target="_blank" rel="nofollow">http://spisas.com/</a> for the info you need and...<br /> <br /> The give money thing is to register it to get rid of the link at the bottom of every page is <a class="snap_shots" href="http://proxy2.de/register" target="_blank" rel="nofollow">http://proxy2.de/register</a><br /> But I think its only for the Adv. Poll, but money's money I guess.<br /> <br /> Auron]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2330/6159.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2330/6159.php</link>
				<pubDate><![CDATA[Wed, 3 Sep 2003 23:18:03]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title>adding to the pulldown menu in guestbook</title>
				<description><![CDATA[ Well, I've read all posts and its still unclear. My file, like someone elses, does not have the same code suggested. Also, I am more interested in adding additional guestsbooks to the pulldown menu as I've seen on your great looking sites. <br /> <br /> My problem is that my provider makes me use Cpanel to install the guestbook (2.2) and I don't have a lot of visibility to the databases. Is there something out there that will tell me to add the additional guestbooks. Or is the pulldown menu not built for this. I've done my homework but I can't find anything.<br /> <br /> Thanks]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2330/6192.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2330/6192.php</link>
				<pubDate><![CDATA[Wed, 10 Sep 2003 23:18:28]]> GMT</pubDate>
				<author><![CDATA[ wlt00]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Adv. GBook is not my specialist area but you need to find the template file that makes up that particular part of the page, maybe header.tpl or something. Find some code like this...<br /> <br /> [code]<br /> &lt;option Value=&quot;intro-amg.htm&quot;&gt;Story&lt;/option&gt;<br /> &lt;option Value=&quot;char1-amg.htm&quot;&gt;Characters&lt;/option&gt;<br /> [/code]<br /> <br /> Then add some more options to the list before this tag &lt;/select&gt;.<br /> <br /> The point of the menu is when you have a couple of hundred posts people can use that to view posts 80-100 or 1-20 ect...<br /> <br /> Auron]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2330/6196.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2330/6196.php</link>
				<pubDate><![CDATA[Thu, 11 Sep 2003 18:56:02]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ This looks like what you're talking about. Its in gb.class.php and I can see the array elements are being set with the select/unselect values. I suppose that I can experiment and remove the code for range numbers and just replace it with some urls encapsulated as you suggest. What do you think?<br /> <br />     function generate_JumpMenu() {<br />         $menu_array[] = "&lt;select name=\"entry\" class=\"select\"&gt;";<br />         $menu_array[] = "&lt;option value=\"0\" selected&gt;".$this-&gt;db-&gt;LANG["FormSelect"]."&lt;/option&gt;";<br />         if ($this-&gt;db-&gt;VARS["entries_per_page"] &lt; $this-&gt;total) {<br />             $remain = $this-&gt;total % $this-&gt;db-&gt;VARS["entries_per_page"];<br />             $i = $this-&gt;total-$remain;<br />             while ($i &gt; 0) {<br />                 $num_max = $i;<br />                 $num_min = $num_max-$this-&gt;db-&gt;VARS["entries_per_page"];<br />                 $num_min++;<br />                 $menu_array[] = "&lt;option value=\"$remain\"&gt;$num_min-$num_max&lt;/option&gt;";<br />                 $i = $num_min-1;<br />                 $remain += $this-&gt;db-&gt;VARS["entries_per_page"];<br />            }<br />         }<br />         $menu_array[] = "&lt;/select&gt;";<br />         $menu_array[] = "&lt;input type=\"submit\" value=\"".$this-&gt;db-&gt;LANG["FormButton"]."\" class=\"input\"&gt;";<br />         return $menu_array;<br />     }]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2330/6204.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2330/6204.php</link>
				<pubDate><![CDATA[Thu, 11 Sep 2003 20:39:11]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ Well as I said its not my specialty.<br /> <br /> You could try this...<br /> <br /> After this...<br /> [code]<br /> $menu_array&#91;&#93; = &quot;&lt;option value=\&quot;0\&quot; selected&gt;&quot;.$this-&gt;db-&gt;LANG&#91;&quot;FormSelect&quot;&#93;.&quot;&lt;/option&gt;&quot;;[/code]<br /> <br /> Add this directly after...<br /> [code]<br /> $menu_array&#91;&#93; = &quot;&lt;option value=\&quot;page1.html\&quot;&gt;page1&lt;/option&gt;&quot;;<br /> $menu_array&#91;&#93; = &quot;&lt;option value=\&quot;page2.html\&quot;&gt;page2&lt;/option&gt;&quot;;[/code]<br /> <br /> And so on... (*** MAYBE ***)<br /> <br /> I'm not sure this will work, I think it may add extra items to the menu array at the top.<br /> <br /> Auron]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2330/6205.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2330/6205.php</link>
				<pubDate><![CDATA[Thu, 11 Sep 2003 21:33:44]]> GMT</pubDate>
				<author><![CDATA[ Auron]]></author>
			</item>
	</channel>
</rss>