<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title><![CDATA[Latest posts for the topic "Adding links to guestbook"]]></title>
		<link>https://proxy2.de/forum/posts/list/3.php</link>
		<description><![CDATA[Latest messages posted in the topic "Adding links to guestbook"]]></description>
		<generator>JForum - http://www.jforum.net</generator>
			<item>
				<title>Adding links to guestbook</title>
				<description><![CDATA[ Is the away to add links to other pages  of my site from guestbook? Like home, contact us, games, etc.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2817/7458.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2817/7458.php</link>
				<pubDate><![CDATA[Tue, 24 Feb 2004 02:18:43]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>same problem</title>
				<description><![CDATA[ iam having the same problem is there anyone out there who can help? i have people complaining that there is no link on my guestbook back to the homepage. im also havin the same problem with my bulletin board.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2817/7459.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2817/7459.php</link>
				<pubDate><![CDATA[Tue, 24 Feb 2004 02:36:56]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title></title>
				<description><![CDATA[ delboy;<br /> I know you can use target="_blank" and have it open in a new window if you want to but myself i would rather have links to different pages.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2817/7460.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2817/7460.php</link>
				<pubDate><![CDATA[Tue, 24 Feb 2004 03:01:35]]> GMT</pubDate>
				<author><![CDATA[ Confused]]></author>
			</item>
			<item>
				<title>Links using drop down menu</title>
				<description><![CDATA[ Folks,<br /> <br /> This info was posted a few times, back awhile. I used it to link to my homepage using the drop down menu. Not being an expert, I assume if you know what to do you can add other links also. Anyway here's the info..hope it helps..<br />  <br /> <br /> 1). open gb.class.php and edit around line 73 <br /> <br /> Code: <br /> function generate_JumpMenu() { <br />         $menu_array[] = "&lt;select name=\"entry\" onChange=\"urlJump('self',this)\" class=\"select\"&gt;"; <br />         $menu_array[] = "&lt;option value=\"http://www.mydomain.com/\" class=\"select\"&gt;Back To Home&lt;/option&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 />     } <br />  <br /> <br /> <br /> Replace [/b]http://www.mydomain.com/ [/b]with your homepage URL <br /> <br /> 2.) Now add a javascript function to the guestbook header <br /> Search for the file header.php and add this <br /> <br /> Code: <br /> &lt;script language="Javascript"&gt; <br /> &lt;!-- <br /> function urlJump(target,selObj) { <br /> var optionValue = selObj.options[selObj.selectedIndex].value; <br /> var isURL = /http:/; <br /> var regMatch = isURL.test(optionValue); <br /> if(regMatch == true) { <br /> eval(target+".location='"+selObj.options[selObj.selectedIndex].value+"'"); <br /> } <br /> } <br /> // --&gt; <br /> &lt;/script&gt; <br /> <br /> &lt;/head&gt; <br /> &lt;body bgcolor="$VARS[pbgcolor]" link="$VARS[link_color]" vlink="$VARS[link_color]"&gt;]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2817/7464.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2817/7464.php</link>
				<pubDate><![CDATA[Tue, 24 Feb 2004 04:46:59]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>guestbook link</title>
				<description><![CDATA[ thanks or the help, but there is still one problem, i do not have gb.class.php in the guestbook but ill check my bulletin board to see i it has it, i probably do have it in the guestbook somewhere but i just cant see it. could someone please point me in the right direction.]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2817/7470.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2817/7470.php</link>
				<pubDate><![CDATA[Wed, 25 Feb 2004 04:08:10]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
			<item>
				<title>Links using drop down menu</title>
				<description><![CDATA[ Delboy,<br /> <br /> I access through cpanel, not sure where your files are. Anyway, open your guestbook file, then look for "lib" file, open it and you will find the gb.class.php file. Open it to edit and scroll down to around line 73 and match the code, then follow instuctions for editing.<br /> <br /> HTH,<br /> <br /> YT]]></description>
				<guid isPermaLink="true">https://proxy2.de/forum/posts/preList/2817/7471.php</guid>
				<link>https://proxy2.de/forum/posts/preList/2817/7471.php</link>
				<pubDate><![CDATA[Wed, 25 Feb 2004 04:26:12]]> GMT</pubDate>
				<author><![CDATA[ Anonymous]]></author>
			</item>
	</channel>
</rss>