<?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>THE ENCYCLOPEDIA &#187; SmartPolice</title>
	<atom:link href="http://blog.mrcongwang.com/category/theforge/smartpolice-mywork/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.mrcongwang.com</link>
	<description>Of A Young Computer Science Graduate Student</description>
	<lastBuildDate>Mon, 17 May 2010 03:58:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Screenshots of SmartPolice</title>
		<link>http://blog.mrcongwang.com/2009/07/15/screenshots-of-smartpolice/</link>
		<comments>http://blog.mrcongwang.com/2009/07/15/screenshots-of-smartpolice/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 14:38:10 +0000</pubDate>
		<dc:creator>silwings</dc:creator>
				<category><![CDATA[SmartPolice]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.mrcongwang.com/?p=182</guid>
		<description><![CDATA[
]]></description>
		<wfw:commentRss>http://blog.mrcongwang.com/2009/07/15/screenshots-of-smartpolice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Generating Excel using PHP</title>
		<link>http://blog.mrcongwang.com/2009/07/15/generating-excel-using-php/</link>
		<comments>http://blog.mrcongwang.com/2009/07/15/generating-excel-using-php/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 12:08:55 +0000</pubDate>
		<dc:creator>silwings</dc:creator>
				<category><![CDATA[SmartPolice]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.mrcongwang.com/?p=178</guid>
		<description><![CDATA[
?View Code PHPrequire_once &#34;excel.php&#34;;
$filename = &#34;anyoneyoulike.xls&#34;;
$export_file = 'xlsfile:/tmp/'.$filename;
$fp = fopen&#40;$export_file, &#34;wb&#34;&#41;;
if &#40;!is_resource&#40;$fp&#41;&#41;
&#123;
die&#40;&#34;Cannot open $export_file&#34;&#41;;
&#125;
$assoc = array&#40;
array&#40;&#34;First name&#34; =&#62; &#34;Mattias&#34;, &#34;IQ&#34; =&#62; 250,
array&#40;&#34;First name&#34; =&#62; &#34;Tony&#34;, &#34;IQ&#34; =&#62; 100,
array&#40;&#34;First name&#34; =&#62; &#34;Peter&#34;, &#34;IQ&#34; =&#62; 100,
array&#40;&#34;First name&#34; =&#62; &#34;Edvard&#34;, &#34;IQ&#34; =&#62; 100&#41;&#41;;
fwrite&#40;$fp, serialize&#40;$assoc&#41;&#41;;
fclose&#40;$fp&#41;;

Begin the download

?View Code PHPheader &#40;&#34;Expires: Mon, 26 Jul 1997 05:00:00 GMT&#34;&#41;;
header &#40;&#34;Last-Modified: &#34; . [...]]]></description>
		<wfw:commentRss>http://blog.mrcongwang.com/2009/07/15/generating-excel-using-php/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Google Map API</title>
		<link>http://blog.mrcongwang.com/2009/07/14/google-map-api/</link>
		<comments>http://blog.mrcongwang.com/2009/07/14/google-map-api/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 22:40:46 +0000</pubDate>
		<dc:creator>silwings</dc:creator>
				<category><![CDATA[SmartPolice]]></category>
		<category><![CDATA[google map]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.mrcongwang.com/?p=169</guid>
		<description><![CDATA[
?View Code JAVASCRIPT&#60;script src=&#34;http://maps.google.com/maps?file=api&#38;amp;v=2&#38;amp;sensor=true_or_false&#38;amp;key=ABQIAAAAbhSGNMzRjUksg2ir5QXBmBSuFY4PPkLYN0KUXhQiBNn2v8OgMhRxPPw3o3KlXbHuAa4xpu9bHMK4xQ&#34; type=&#34;text/javascript&#34;&#62;&#60;/script&#62;


?View Code JAVASCRIPT&#60;div id=&#34;map&#34; style=&#34;width: 400px; height: 300px&#34;&#62;&#60;/div&#62;
&#160;
    &#60;script type=&#34;text/javascript&#34;&#62;
&#160;
    //&#60;![CDATA[
&#160;
&#160;
&#160;
    var map = new GMap&#40;document.getElementById&#40;&#34;map&#34;&#41;&#41;;
&#160;
    map.centerAndZoom&#40;new GPoint&#40;-83.022206, 39.998264&#41;, 3&#41;;
&#160;
&#160;
&#160;
    //]]&#62;
&#160;
    &#60;/script&#62;


?View Code JAVASCRIPTfunction createInfoMarker&#40;point, address&#41; &#123;
&#160;
   var marker = new [...]]]></description>
		<wfw:commentRss>http://blog.mrcongwang.com/2009/07/14/google-map-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
