<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Code The World — Visitor information]]></title>
	<link rel="self" href="https://codetheworld.com/extern.php?action=feed&amp;tid=10&amp;type=atom" />
	<updated>2008-06-15T01:08:26Z</updated>
	<generator>PunBB</generator>
	<id>https://codetheworld.com/viewtopic.php?id=10</id>
		<entry>
			<title type="html"><![CDATA[Visitor information]]></title>
			<link rel="alternate" href="https://codetheworld.com/viewtopic.php?pid=10#p10" />
			<content type="html"><![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>]]></content>
			<author>
				<name><![CDATA[Casper]]></name>
				<uri>https://codetheworld.com/profile.php?id=5</uri>
			</author>
			<updated>2008-06-15T01:08:26Z</updated>
			<id>https://codetheworld.com/viewtopic.php?pid=10#p10</id>
		</entry>
</feed>
