<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title><![CDATA[Code The World — Visitor information]]></title>
		<link>https://codetheworld.com/viewtopic.php?id=10</link>
		<atom:link href="https://codetheworld.com/extern.php?action=feed&amp;tid=10&amp;type=rss" rel="self" type="application/rss+xml" />
		<description><![CDATA[The most recent posts in Visitor information.]]></description>
		<lastBuildDate>Sun, 15 Jun 2008 01:08:26 +0000</lastBuildDate>
		<generator>PunBB</generator>
		<item>
			<title><![CDATA[Visitor information]]></title>
			<link>https://codetheworld.com/viewtopic.php?pid=10#p10</link>
			<description><![CDATA[<p>Description<br />Displays information about a visitor to a web page. Shows IP address, referrer and browser type.</p><p>The code<br /></p><div class="codebox"><pre><code>&lt;?php

/**
 * Add this line of code in your page:
 * &lt;?php include &quot;visitor_information.php&quot;; ?&gt;
 */

// Display IP address
echo &quot;&lt;p&gt;IP Address: &quot; . $_SERVER[&#039;REMOTE_ADDR&#039;] . &quot;&lt;/p&gt;&quot;;

// Display the referrer
echo &quot;&lt;p&gt;Referrer: &quot; . $_SERVER[&#039;HTTP_REFERER&#039;] . &quot;&lt;/p&gt;&quot;;

// Display browser type
echo &quot;&lt;p&gt;Browser: &quot; . $_SERVER[&#039;HTTP_USER_AGENT&#039;] . &quot;&lt;/p&gt;&quot;;

?&gt;</code></pre></div>]]></description>
			<author><![CDATA[null@example.com (Casper)]]></author>
			<pubDate>Sun, 15 Jun 2008 01:08:26 +0000</pubDate>
			<guid>https://codetheworld.com/viewtopic.php?pid=10#p10</guid>
		</item>
	</channel>
</rss>
