<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1000963" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1000963</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/i-need-help#comment-1004085</link>
    <description> &lt;p&gt;Oops, a dumb mistake of mine.  I left a few lines of code that were being printed that shouldn&#039;t have been.&lt;/p&gt;
&lt;p&gt;The source for the updated version is at &lt;a href=&quot;http://www.dlo.net/~rob/cgi-bin/dropdown.txt&quot; class=&quot;bb-url&quot;&gt;http://www.dlo.net/~rob/cgi-bin/dropdown.txt&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;I tested it on my version of netscape and it worked fine.&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
&lt;strong&gt;Windmills always turn counter-clockwise. Except for the windmills in Ireland.&lt;/strong&gt;&lt;/p&gt;
 </description>
     <pubDate>Sun, 13 Feb 2000 02:01:00 +0000</pubDate>
 <dc:creator>Rob Pengelly</dc:creator>
 <guid isPermaLink="false">comment 1004085 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/i-need-help#comment-1004084</link>
    <description> &lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;That script that you created for me, does not show up at all in Netscape.  Is there a way you could make it compatible with both browsers?&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;Chris Roane&lt;/p&gt;
 </description>
     <pubDate>Sat, 12 Feb 2000 23:05:00 +0000</pubDate>
 <dc:creator>wsresource</dc:creator>
 <guid isPermaLink="false">comment 1004084 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/i-need-help#comment-1004082</link>
    <description> &lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thanks for all your help!&lt;/p&gt;
&lt;p&gt;My network is all setup.  You can go check it out at &lt;a href=&quot;http://www.wsresource.com/network/index.html&quot; class=&quot;bb-url&quot;&gt;http://www.wsresource.com/network/index.html&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;Chris Roane&lt;/p&gt;
 </description>
     <pubDate>Sat, 12 Feb 2000 16:03:00 +0000</pubDate>
 <dc:creator>wsresource</dc:creator>
 <guid isPermaLink="false">comment 1004082 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/i-need-help#comment-1004081</link>
    <description> &lt;p&gt;I thought Patrick would have installed Stefen&#039;s [ CODE ] hack by now? It has been a few months since the first request for it to be put back on?  It shouldn&#039;t take more than 5 minutes....&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
&lt;strong&gt;Due to precipitation, for a few weeks K2 is bigger than Mount Everest.&lt;/strong&gt;&lt;/p&gt;
 </description>
     <pubDate>Sat, 12 Feb 2000 15:59:00 +0000</pubDate>
 <dc:creator>Rob Pengelly</dc:creator>
 <guid isPermaLink="false">comment 1004081 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/i-need-help#comment-1004080</link>
    <description> &lt;blockquote&gt;&lt;p&gt;code:&lt;/p&gt;
&lt;pre&gt;
#!/usr/bin/perl
#To execute this from a site just use
#&amp;lt;script src=&quot;http://url.com/to/name_of_script.cgi&quot;&amp;gt;&amp;lt;/script&amp;gt;
$name_of_file = &quot;links.txt&quot;;
$num=0;
$counter=0;
open(IN,&quot;&amp;lt;$name_of_file&quot;);
while(&amp;lt;IN&amp;gt; )
{
	$line=$_;
	($name,$url)=split(/&amp;lt;&amp;gt;/,$line);
	$url =~s/\n//g;
	$name =~s/\n//g;
	push(@names,$name);
	push(@urls,$url);
	$counter++;	
}
close(IN);

foreach $url (@urls)
{
	$site = &quot;&amp;lt;a href=\&quot;$urls[$num]\&quot;&amp;gt;$names[$num]&amp;lt;\/a&amp;gt;&quot;;
	push(@sites,$site);
	$num++;
}
print &quot;Content-type:text/html\n\n&quot;;
print &quot;document.write(\&#039;&quot;;

foreach $site (@sites)
{
	print $site;
}
print &quot;\&#039;);&quot;;
[/code]

That should work, I tested it and it worked fine.

------------------
&lt;strong&gt;Due to precipitation, for a few weeks K2 is bigger than Mount Everest.&lt;/strong&gt; &lt;/pre&gt;&lt;/blockquote&gt;</description>
     <pubDate>Sat, 12 Feb 2000 15:57:00 +0000</pubDate>
 <dc:creator>Rob Pengelly</dc:creator>
 <guid isPermaLink="false">comment 1004080 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/i-need-help#comment-1004079</link>
    <description> &lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Thank you so much Robp.  I really appreciate the time you have spent to do this.  I have one question though.  Would this script work with like links too?&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;Chris Roane&lt;/p&gt;
 </description>
     <pubDate>Fri, 11 Feb 2000 15:06:00 +0000</pubDate>
 <dc:creator>wsresource</dc:creator>
 <guid isPermaLink="false">comment 1004079 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/i-need-help#comment-1004078</link>
    <description> &lt;p&gt;OK, came up with a script. Hope it suits your needs.&lt;/p&gt;
&lt;p&gt;Each site that is part of the network just places:&lt;br /&gt;
&amp;lt;script src=&quot;url.com/to/dropdown.cgi&quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;/p&gt;
&lt;p&gt;You can view a test of the script at &lt;a href=&quot;http://dlo.net/~rob/cgi-bin/dropdown.shtml&quot; class=&quot;bb-url&quot;&gt;http://dlo.net/~rob/cgi-bin/dropdown.shtml&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;You can see how the links are stored in the text file at  &lt;a href=&quot;http://dlo.net/~rob/cgi-bin/links.txt&quot; class=&quot;bb-url&quot;&gt;http://dlo.net/~rob/cgi-bin/links.txt&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;And you can download the source at &lt;a href=&quot;http://dlo.net/~rob/cgi-bin/dropdown.zip&quot; class=&quot;bb-url&quot;&gt;http://dlo.net/~rob/cgi-bin/dropdown.zip&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;Hope that helps&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
&lt;strong&gt;Due to precipitation, for a few weeks K2 is bigger than Mount Everest.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;[This message has been edited by robp (edited 12 February 2000).]&lt;/p&gt;
 </description>
     <pubDate>Fri, 11 Feb 2000 14:07:00 +0000</pubDate>
 <dc:creator>Rob Pengelly</dc:creator>
 <guid isPermaLink="false">comment 1004078 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/i-need-help#comment-1004077</link>
    <description> &lt;p&gt;Seems like an interesting script you need.  I will try and work on one when I get some time.  Can&#039;t promise I can do it though so keep looking.&lt;/p&gt;
&lt;p&gt;------------------&lt;br /&gt;
&lt;strong&gt;Due to precipitation, for a few weeks K2 is bigger than Mount Everest.&lt;/strong&gt;&lt;/p&gt;
 </description>
     <pubDate>Fri, 11 Feb 2000 03:12:00 +0000</pubDate>
 <dc:creator>Rob Pengelly</dc:creator>
 <guid isPermaLink="false">comment 1004077 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/i-need-help#comment-1004076</link>
    <description> &lt;p&gt;CGI isn&#039;t a programming language, it&#039;s the Common Gateway Interface.  Allows interaction between users and servers in a fuller way.  CGI scripts can be programmed in pretty much any programming language, as in Perl, C, C++, Basic, and others.  You might want to take a look at &lt;a href=&quot;http://www.cgi-resources.com&quot; class=&quot;bb-url&quot;&gt;http://www.cgi-resources.com&lt;/a&gt;  for a script that fills your requirements.&lt;/p&gt;
 </description>
     <pubDate>Fri, 11 Feb 2000 02:31:00 +0000</pubDate>
 <dc:creator>roBofh</dc:creator>
 <guid isPermaLink="false">comment 1004076 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
