<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1018453" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1018453</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-problems-0#comment-1108961</link>
    <description> &lt;p&gt;I would have to agree, server side scripting would be the best solution... whatever langauge is available&lt;/p&gt;
&lt;p&gt;CF = #CGI.remote_host#&lt;br /&gt;
In fact I think that REMOTE_HOST would work for almost any langauge, I know it does in asp. I have been wrong before tho &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 15 May 2002 19:25:44 +0000</pubDate>
 <dc:creator>nicora</dc:creator>
 <guid isPermaLink="false">comment 1108961 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-problems-0#comment-1108936</link>
    <description> &lt;p&gt;darn details! thanks for clarifying! &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
 </description>
     <pubDate>Wed, 15 May 2002 05:45:53 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1108936 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-problems-0#comment-1108935</link>
    <description> &lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote:&lt;br /&gt;
Isn&#039;t that the exact same code as above and in the Java link?
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Yes, it looks like it, except for capitalisation of a few characters, and that the first snippet didn&#039;t work but the one in the link did. &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/wink.png&quot; title=&quot;Wink&quot; alt=&quot;Wink&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I agree that server side is the way to go for this.&lt;/p&gt;
 </description>
     <pubDate>Wed, 15 May 2002 04:52:03 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1108935 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-problems-0#comment-1108897</link>
    <description> &lt;p&gt;Yes Perl, Php, or ssi. However you like it and whatever capabilities your server has.&lt;br /&gt;
-dk&lt;/p&gt;
 </description>
     <pubDate>Tue, 14 May 2002 11:35:47 +0000</pubDate>
 <dc:creator>dk01</dc:creator>
 <guid isPermaLink="false">comment 1108897 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-problems-0#comment-1108891</link>
    <description> &lt;p&gt;Isn&#039;t that the exact same code as above and in the Java link? &lt;/p&gt;
&lt;p&gt;I think it&#039;s better to do it server-side -- more reliable and no client side errors to screw you up.&lt;/p&gt;
 </description>
     <pubDate>Tue, 14 May 2002 06:57:59 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1108891 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-problems-0#comment-1108890</link>
    <description> &lt;p&gt;Hmm... just checked again on Google. Look what I found at &lt;a href=&quot;http://javascript.internet.com/user-details/hostname.html&quot; class=&quot;bb-url&quot;&gt;http://javascript.internet.com/user-details/hostname.html&lt;/a&gt;&lt;/p&gt;
&lt;blockquote class=&quot;bb-quote-body&quot;&gt;&lt;p&gt;Quote: &lt;strong&gt;&lt;br /&gt;
(works only for Netscape Browsers with Java enabled) If you would like to get your visitors IP Addresses, use this script. Very cool. &lt;/strong&gt;
&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;I tested the following code in Netscape 4.7 and it worked just fine.&lt;/p&gt;
&lt;p&gt;Code from &lt;a href=&quot;http://www.irt.org/discus/messages/25/236.html&quot; class=&quot;bb-url&quot;&gt;http://www.irt.org/discus/messages/25/236.html&lt;/a&gt;&lt;br /&gt;
&lt;div class=&quot;codeblock&quot;&gt;&lt;code&gt;&amp;amp;lt;script LANGUAGE=&amp;quot;JavaScript&amp;quot;&amp;amp;gt; &lt;br /&gt;myAddress=java.net.InetAddress.getLocalHost(); &lt;br /&gt;myAddress2=java.net.InetAddress.getLocalHost(); &lt;br /&gt;host=myAddress.getHostName(); &lt;br /&gt;ip=myAddress2.getHostAddress(); &lt;br /&gt;document.write(&amp;quot;Your host name is &amp;quot;+host); &lt;br /&gt;document.write(&amp;quot;&amp;lt;BR&amp;gt;Your IP address is &amp;quot;+ip); &lt;br /&gt;&amp;amp;lt;/script&amp;amp;gt; &lt;/code&gt;&lt;/div&gt;&#039;&lt;/p&gt;
 </description>
     <pubDate>Tue, 14 May 2002 06:54:46 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1108890 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-problems-0#comment-1108888</link>
    <description> &lt;p&gt;You must declare using &lt;strong&gt;var&lt;/strong&gt; before the variable names.&lt;/p&gt;
&lt;p&gt;e.g.&lt;/p&gt;
&lt;p&gt;var myaddress ...&lt;/p&gt;
 </description>
     <pubDate>Tue, 14 May 2002 06:24:06 +0000</pubDate>
 <dc:creator>Abhishek Reddy</dc:creator>
 <guid isPermaLink="false">comment 1108888 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-problems-0#comment-1108879</link>
    <description> &lt;p&gt;I would personally use either SSI or Php. &lt;/p&gt;
&lt;p&gt;For SSI: &lt;/p&gt;
&lt;p&gt;&lt;a href=&quot;http://www.wdvl.com/Authoring/SSI/Intro/cgi.html&quot; class=&quot;bb-url&quot;&gt;http://www.wdvl.com/Authoring/SSI/Intro/cgi.html&lt;/a&gt;&lt;/p&gt;
 </description>
     <pubDate>Tue, 14 May 2002 01:01:23 +0000</pubDate>
 <dc:creator>Suzanne</dc:creator>
 <guid isPermaLink="false">comment 1108879 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-problems-0#comment-1108878</link>
    <description> &lt;p&gt;then how would i do it in PERL&lt;/p&gt;
 </description>
     <pubDate>Tue, 14 May 2002 00:53:47 +0000</pubDate>
 <dc:creator>brady.k</dc:creator>
 <guid isPermaLink="false">comment 1108878 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/html-css-and-javascript/javascript-problems-0#comment-1108756</link>
    <description> &lt;p&gt;That looks like it should work but it doesn&#039;t for me. I think a perl script would be the only way to get a result almost every time. Using java seems to be very inconsistant.&lt;br /&gt;
-dk&lt;/p&gt;
 </description>
     <pubDate>Sun, 12 May 2002 06:35:57 +0000</pubDate>
 <dc:creator>dk01</dc:creator>
 <guid isPermaLink="false">comment 1108756 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
