<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Khalil Majdalawi&#039;s Blog &#187; PHP</title>
	<atom:link href="http://dev3k.com/blog/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://dev3k.com/blog</link>
	<description>Web development,Technology,Games and more...</description>
	<lastBuildDate>Tue, 08 Jun 2010 10:07:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>How to get client MAC address in PHP</title>
		<link>http://dev3k.com/blog/2009/07/mac-address-in-php/</link>
		<comments>http://dev3k.com/blog/2009/07/mac-address-in-php/#comments</comments>
		<pubDate>Sat, 04 Jul 2009 14:30:53 +0000</pubDate>
		<dc:creator>Khalil Majdalawi</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://dev3k.com/blog/?p=308</guid>
		<description><![CDATA[&#60;?php exec('arp '.$_SERVER['REMOTE_ADDR'],$user_mac); echo substr($user_mac[1],strpos($user_mac[1],':')-2, '17'); ?&#62; Note : this technique only works on local area networks with linux based server and its impossible to get mac address in php over internet]]></description>
			<content:encoded><![CDATA[<pre>
<code type="php">&lt;?php
exec('arp '.$_SERVER['REMOTE_ADDR'],$user_mac);
echo substr($user_mac[1],strpos($user_mac[1],':')-2, '17');
?&gt;</code>
</pre>
<p>Note : this technique only works on local area networks with linux based server and its impossible to get mac address in php over internet  </p>
]]></content:encoded>
			<wfw:commentRss>http://dev3k.com/blog/2009/07/mac-address-in-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
