<?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>Study PHP Skills, Share PHP Code</title>
	<atom:link href="http://kingphp.com/feed" rel="self" type="application/rss+xml" />
	<link>http://kingphp.com</link>
	<description></description>
	<lastBuildDate>Tue, 03 Apr 2012 05:20:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Skills on Display Orders of Zen-Cart.</title>
		<link>http://kingphp.com/237.html</link>
		<comments>http://kingphp.com/237.html#comments</comments>
		<pubDate>Tue, 03 Apr 2012 05:18:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[Zen Cart]]></category>

		<guid isPermaLink="false">http://kingphp.com/?p=237</guid>
		<description><![CDATA[Especially at the end of every month, we need to know how many orders we have. Here are 2 method you may like when you use Zen-Cart. First, if you need to know certain latest new orders, say 2000, how to do then, you can use the following mysql command: SELECT * FROM `orders` order [...]]]></description>
			<content:encoded><![CDATA[<p>Especially at the end of every month, we need to know how many orders we have. Here are 2 method you may like when you use Zen-Cart.</p>
<p>First, if you need to know certain latest new orders, say 2000, how to do then, you can use the following mysql command:<br />
SELECT * FROM `orders` order by orders_id desc limit 0,2000;  //show latest orders;</p>
<p>Second is we can use the following mysql code to show all the products with a month, say display all products within March, 2012:</p>
<p>SELECT date_purchased, SUM(order_total) FROM `orders` where date_purchased between &#8220;2012-03-01&#8243; and &#8220;2012-03-30&#8243;;</p>
<p>If we need to know all orders in a year, say 2011, how to then? Simple:</p>
<p>SELECT date_purchased, SUM(order_total) FROM `orders` where date_purchased between &#8220;2011-01-01&#8243; and &#8220;2011-12-31&#8243;;</p>
<p>Here we can use SUM(order_total) to caculate total value within a period.</p>
]]></content:encoded>
			<wfw:commentRss>http://kingphp.com/237.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Skills on How to Show different Adsense Ads at WordPress</title>
		<link>http://kingphp.com/229.html</link>
		<comments>http://kingphp.com/229.html#comments</comments>
		<pubDate>Sat, 24 Mar 2012 01:02:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Php Code]]></category>
		<category><![CDATA[Php Skills]]></category>
		<category><![CDATA[Php Study]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://kingphp.com/?p=229</guid>
		<description><![CDATA[More and more people love to use wordpress to setup blogs and place adsense ads, and many people still love the use the theme of Classic, by Dave Shea. Can we show different adsense code at the same place, but different pages then? For example, we want to show 2 adsense block at the main [...]]]></description>
			<content:encoded><![CDATA[<p>More and more people love to use wordpress to setup blogs and place adsense ads, and many people still love the use the theme of Classic, by Dave Shea. Can we show different adsense code at the same place, but different pages then? For example, we want to show 2 adsense block at the main body of detailed pages, but only show 1 adsense block at other page&#8217;s main body.<br />
<span id="more-229"></span><br />
First, we can use $wp_query-&gt;current_post == 0 to check the current post is the first post or not, second, we can use is_single() to check the current page is a detailed post page or not.</p>
<p>We can use if (is_single() AND $wp_query-&gt;current_post == 0) to check the current post is the first or not and current page is a detailed post page or not. If the result is true, then show 2 adsense block ads. Otherwise if the current is the first post, then show 1 adsense block.</p>
<p>Here is the code:<br />
<code><br />
</code></p>
<p>&lt;?php if (is_single() AND $wp_query-&gt;current_post == 0):</p>
<p>echo (&#8216; &lt;div style=&#8221;float:left;margin-right:60px&#8221;&gt;ads 1 &lt;br&gt;  ads 2 &lt;/div&gt; &lt;div&gt; &#8216;);</p>
<p>elseif ($wp_query-&gt;current_post == 0):</p>
<p>echo (&#8216; &lt;div style=&#8221;float:left;margin-right:60px&#8221;&gt; add &lt;/div&gt; &lt;div&gt; &#8216;);</p>
<p>endif; $postcnt++; ?&gt;</p>
<p>codex.wordpress.org/Conditional_Tags<br />
codex.wordpress.org/The_Loop</p>
]]></content:encoded>
			<wfw:commentRss>http://kingphp.com/229.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change left width 2-columns skin of x-cart v4.5?</title>
		<link>http://kingphp.com/225.html</link>
		<comments>http://kingphp.com/225.html#comments</comments>
		<pubDate>Thu, 22 Mar 2012 04:32:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[X-Cart]]></category>

		<guid isPermaLink="false">http://kingphp.com/?p=225</guid>
		<description><![CDATA[For our personal needs, we may need to change the left width of 2-columns skin of x-cart. At present, most users are using X-cart Gold V4.5. Go to skin/2-columns/css, and open altskin.css, change: #left-bar { width: 207px; margin-left: 0; } #center-main { margin: 0 0 0 250px; padding-bottom: 0; } to: #left-bar { width: 207px; [...]]]></description>
			<content:encoded><![CDATA[<p>For our personal needs, we may need to change the left width of 2-columns skin of x-cart. At present, most users are using X-cart Gold V4.5.<br />
Go to skin/2-columns/css, and open altskin.css, change:<br />
<code>#left-bar {<br />
  width: 207px;<br />
  margin-left: 0;<br />
}<br />
<span id="more-225"></span><br />
#center-main {<br />
  margin: 0 0 0 250px;<br />
  padding-bottom: 0;<br />
}</code><br />
to:<br />
<code>#left-bar {<br />
  width: 207px;<br />
  margin-left: 0;<br />
}</p>
<p>#center-main {<br />
  margin: 0 0 0 307px;<br />
  padding-bottom: 0;<br />
}</code></p>
<p>and change:<br />
<code><br />
#header .line1 {<br />
  height: 30px;<br />
  margin-left: 250px;<br />
  width: auto;<br />
}</p>
<p>#header .line2 {<br />
  border: 1px solid #fd9734;<br />
  background: url(../images/2column/header_bg.gif) repeat-x top;<br />
  margin-left: 250px;<br />
  width: auto;<br />
}</p>
<p>#header .line3 {<br />
  height: 34px;<br />
  margin-left: 250px;<br />
  width: auto;<br />
}</code></p>
<p>to:<br />
<code><br />
#header .line1 {<br />
  height: 30px;<br />
  margin-left: 307px;<br />
  width: auto;<br />
}</p>
<p>#header .line2 {<br />
  border: 1px solid #fd9734;<br />
  background: url(../images/2column/header_bg.gif) repeat-x top;<br />
  margin-left: 307px;<br />
  width: auto;<br />
}</p>
<p>#header .line3 {<br />
  height: 34px;<br />
  margin-left: 307px;<br />
  width: auto;<br />
}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://kingphp.com/225.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Change php.ini of Dreamhost Web Hosting?</title>
		<link>http://kingphp.com/220.html</link>
		<comments>http://kingphp.com/220.html#comments</comments>
		<pubDate>Thu, 08 Mar 2012 08:47:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://kingphp.com/?p=220</guid>
		<description><![CDATA[We usually edit .htaccess to achieve our special demands when we use the web hosting from dreamhost.com. But sometimes we have to modify php.ini to get better results, for example, we often meet the following error when we import posts to wordpress, especially we import more than 7MB files. We usually have 3 methods to [...]]]></description>
			<content:encoded><![CDATA[<p>We usually edit .htaccess to achieve our special demands when we use the web hosting from dreamhost.com. But sometimes we have to modify php.ini to get better results, for example, we often meet the following error when we import posts to wordpress, especially we import more than 7MB files.  </p>
<p>We usually have 3 methods to resolve such issures:<br />
1, modify .htaccess;<br />
2, modify wp-config.php;<br />
I have tried these 2 methods for my dreamhost web hosting, failed.</p>
<p>The last one is using Custom PHP.INI auto-installer&#8221;, download it from sxi.sabrextreme.com/dh-phpini, upzip the file, and upload dh-phpini.php to your domain&#8217;s folder and open it in a browser. An editable php.ini will be created in the domain&#8217;s cgi-bin folder in a minute.</p>
<p>The author has thougt very carefully, after you run the code, dh-phpini.php will be deleted automatically. </p>
<p>Now you can edit php.ini under cgi-bin folder, for example, you can modify upload_max_filesize = 20M<br />
 to upload_max_filesize = 100M.</p>
]]></content:encoded>
			<wfw:commentRss>http://kingphp.com/220.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show Latest Testimonals at Zen-Cart Homepage</title>
		<link>http://kingphp.com/217.html</link>
		<comments>http://kingphp.com/217.html#comments</comments>
		<pubDate>Fri, 13 Jan 2012 11:01:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Zen Cart]]></category>

		<guid isPermaLink="false">http://kingphp.com/?p=217</guid>
		<description><![CDATA[Sometimes we like to show several latest customers testimonals at zen-cart based shopping cart homepage. How to do then? Here are my method, let me share the code with you. Go go to includes/modules, and open left_column.php, add the following code: &#60;code&#62;&#60;? $sql = &#8220;select  * from pres_testimonials where status = 1 order by id [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes we like to show several latest customers testimonals at zen-cart based shopping cart homepage. How to do then? Here are my method, let me share the code with you.</p>
<p>Go go to includes/modules, and open left_column.php, add the following code: &lt;code&gt;&lt;? $sql = &#8220;select  * from pres_testimonials where status = 1 order by id DESC limit 3&#8243;; $result=mysql_query($sql); while($row=mysql_fetch_array($result)) { echo &#8220;&lt;strong&gt;&#8221;.$row[name].&#8221;&lt;/strong&gt;&#8221;; echo $row[detail];<span id="more-217"></span></p>
<p>} ?&gt; &lt;/code&gt;</p>
<p>If you like to show not more than 110 words per testimonal, you can use the folliwing code: &lt;code&gt;&lt;? $sql = &#8220;select  * from pres_testimonials where status = 1 order by id DESC limit 3&#8243;; $result=mysql_query($sql); while($row=mysql_fetch_array($result)) { echo &#8220;&lt;strong&gt;&#8221;.$row[name].&#8221;&lt;/strong&gt;&#8221;;</p>
<p>$pos = strpos($row[detail],&#8221; &#8220;,110); $txt1 = substr($row[detail],0,$pos);</p>
<p>echo $txt1.&#8221;&lt;br&gt;&lt;/br&gt;&#8221;;</p>
<p>} ?&gt;&lt;/code&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://kingphp.com/217.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add Extra Text at X-cart Product Name?</title>
		<link>http://kingphp.com/213.html</link>
		<comments>http://kingphp.com/213.html#comments</comments>
		<pubDate>Sat, 24 Dec 2011 11:45:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[X-Cart]]></category>

		<guid isPermaLink="false">http://kingphp.com/?p=213</guid>
		<description><![CDATA[There are several places need to modify to add extra text at X-cart Product Name. 1. For Products at X-cart Homepage and Detailed Category Page: Go to /2-columns/customer/main/products_t.tpl, and change {$current_category.category} {$product.product&#124;amp} to: {if $main eq "catalog" &#038;&#038; $current_category.category eq ""} Cheap Eyeglasses {$product.product&#124;amp} {elseif $main eq "catalog" &#038;&#038; $current_category.category ne ""} {$current_category.category} {$product.product&#124;amp} {/if} [...]]]></description>
			<content:encoded><![CDATA[<p>There are several places need to modify to add extra text at X-cart Product Name.</p>
<p>1. For Products at X-cart Homepage and Detailed Category Page:<br />
Go to /2-columns/customer/main/products_t.tpl, and change<br />
<code><a href="{$product.alt_url|default:$product.page_url|amp}" class="product-title">{$current_category.category}  {$product.product|amp}</a></code><br />
to:<br />
<code>{if $main eq "catalog" &#038;&#038; $current_category.category eq ""}<br />
<a href="{$product.alt_url|default:$product.page_url|amp}" class="product-title">Cheap Eyeglasses {$product.product|amp}</a><br />
{elseif $main eq "catalog" &#038;&#038; $current_category.category ne ""}<br />
<a href="{$product.alt_url|default:$product.page_url|amp}" class="product-title">{$current_category.category} {$product.product|amp}</a><br />
{/if}</code><br />
<span id="more-213"></span></p>
<p>2. For Product Names at Detailed Product Page, go to /common_files/customer/main/product.tpl<br />
Change:<br />
<code><br />
<h1>{$product.producttitle|amp}</h1>
<p> </code><br />
to:<br />
<code><br />
<h1>Prescription Eyeglasses {$product.producttitle|amp}</h1>
<p> </code><br />
Here just add &#8220;Prescription Eyeglasses&#8221; as what we need to add.</p>
<p>3. Product Names within Customer Also Bought ( at the end of Detaild Product Page), go to /common_files/customer/simple_products_list.tpl, and change<br />
<!--more--><a href="product.php?productid={$product.productid}" class="product-title"{if $open_new_window eq 'Y'} target="_blank"{/if}>{$product.product|amp}</a><!--more--><br />
to:<br />
<code><a href="product.php?productid={$product.productid}" class="product-title"{if $open_new_window eq 'Y'} target="_blank"{/if}>Discount Eyeglasses {$product.product|amp}</a></code><br />
Here we add &#8220;Discount Eyeglasses&#8221; as extra text.</p>
<p>4. Product Name with Bestsellers<br />
Go to /common_files/modules/Bestsellers/menu_bestsellers.tpl, and change:<br />
<code><a href="product.php?productid={$b.productid}&amp;cat={$cat}&amp;bestseller=Y">{$b.product|amp}</a></code><a href="product.php?productid={$b.productid}&amp;cat={$cat}&amp;bestseller=Y">{$b.product|amp}</a><br />
to:<br />
<code><a href="product.php?productid={$b.productid}&amp;cat={$cat}&amp;bestseller=Y">Eyeglasses {$b.product|amp}</a></code><br />
Here we add &#8220;Eyeglasses&#8221; as extra text.</p>
<p>5. Product name within Recently Viewed, go to /common_files/modules/Recently_Viewed/content.tpl, and change:<br />
<code><a href="{$url}" class="product-title">{$rviewed_products[i].product|amp}</a></code><br />
to:<br />
<code><a href="{$url}" class="product-title">Eyeglasses {$rviewed_products[i].product|amp}</a></code><br />
Here we also add &#8220;Eyeglasses&#8221; as extra text.</p>
<p>The above method has been tested successfully at X-cart Gold V4.4.4</p>
]]></content:encoded>
			<wfw:commentRss>http://kingphp.com/213.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Remove the Website Field of WordPress From the Comment Form?</title>
		<link>http://kingphp.com/210.html</link>
		<comments>http://kingphp.com/210.html#comments</comments>
		<pubDate>Wed, 30 Nov 2011 01:53:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://kingphp.com/?p=210</guid>
		<description><![CDATA[We found so many spammers try to leave their url in the field of Website, and use Name as their keywords. How to prevent the spammers doing so then? For example, how to prevent them to leave thir url? Let me share my tips with you. Go to your blog root, open wp-comments-post.php and find [...]]]></description>
			<content:encoded><![CDATA[<p>We found so many spammers try to leave their url in the field of Website, and use Name as their keywords. How to prevent the spammers doing so then? For example, how to prevent them to leave thir url? Let me share my tips with you.<span id="more-210"></span></p>
<p>Go to your blog root, open wp-comments-post.php and find<br />
<code>$comment_author_url   = ( isset($_POST['url']) )     ? trim($_POST['url']) : null;</code><br />
You can add your own url here, for example, add http://kingphp.com, the code will be:<br />
<code>$comment_author_url   = "http://kingphp.com"; //( isset($_POST['url']) )     ? trim($_POST['url']) : null;</code></p>
<p>Done. I have tested the code successfully under wordpress  Version 3.2.1</p>
]]></content:encoded>
			<wfw:commentRss>http://kingphp.com/210.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable ajax to Deal with Time Out Issues</title>
		<link>http://kingphp.com/208.html</link>
		<comments>http://kingphp.com/208.html#comments</comments>
		<pubDate>Mon, 28 Nov 2011 02:14:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP Link Directory]]></category>

		<guid isPermaLink="false">http://kingphp.com/?p=208</guid>
		<description><![CDATA[If you have thousands categories and you do not enable ajax, you will often meet time out issues, such as: Fatal error: Maximum execution time of 30 seconds exceeded in ****include/functions.php on line XXX How to deal with this then? Here let me share my tip with you. Log in you PHP Link Directory admin [...]]]></description>
			<content:encoded><![CDATA[<p>If you have thousands categories and you do not enable ajax, you will often meet time out issues, such as:<br />
Fatal error: Maximum execution time of 30 seconds exceeded in ****include/functions.php on line XXX</p>
<p>How to deal with this then? Here let me share my tip with you.<span id="more-208"></span></p>
<p>Log in you PHP Link Directory admin panel, Click &#8220;Settings&#8221;, and choose &#8220;Admin Area&#8221;, Under the new window of &#8220;Admin Area&#8221;,  did you see &#8220;Category selection method&#8221;? That&#8217;s it! </p>
<p>You should select &#8220;Live catgory selection with AJAX&#8221;, and save!<br />
Done! Easy?!</p>
]]></content:encoded>
			<wfw:commentRss>http://kingphp.com/208.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change x-cart v4.4.4 Admin Title?</title>
		<link>http://kingphp.com/204.html</link>
		<comments>http://kingphp.com/204.html#comments</comments>
		<pubDate>Fri, 25 Nov 2011 13:05:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[X-Cart]]></category>

		<guid isPermaLink="false">http://kingphp.com/?p=204</guid>
		<description><![CDATA[When we visit our X-Cart shopping cart admin panel, the defaul words between is X-CART. Powerful PHP shopping cart software. How can we change these words to meet our needs then? There are 2 methods: First one, login you admin panel, go to content&#8211;>languages, select English under &#8220;Edit Language&#8221;, after that search &#8220;txt_site_title&#8221;, you can [...]]]></description>
			<content:encoded><![CDATA[<p>When we visit our X-Cart shopping cart admin panel, the defaul words between  is X-CART. Powerful PHP shopping cart software. How can we change these words to meet our needs then?</p>
<p>There are 2 methods:<span id="more-204"></span><br />
First one, login you admin panel, go to content&#8211;>languages, select English under &#8220;Edit Language&#8221;, after that search &#8220;txt_site_title&#8221;, you can edit the words as you like.</p>
<p>Another method is go to tools &#8211;> webmaster tool, and start webmaster mode, click &#8220;common_files/single/home.tpl&#8221;, you will find , just exchage {$lng.txt_site_title} to  the words you like. </p>
<p>Done, easy or not?@</p>
]]></content:encoded>
			<wfw:commentRss>http://kingphp.com/204.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Chang X-cart Detailed Product Page Product Thumbnail Place</title>
		<link>http://kingphp.com/202.html</link>
		<comments>http://kingphp.com/202.html#comments</comments>
		<pubDate>Mon, 14 Nov 2011 00:21:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[X-Cart]]></category>

		<guid isPermaLink="false">http://kingphp.com/?p=202</guid>
		<description><![CDATA[As we know, at x-cart 2 colomns template, product thumbnail of detailed product page is at the left. How can we change the Product Thumbnai to center, and at the same time, remove the default left space? Remove the Detailed Product Page Product Thumbnail Place: 1. open skin/common_files/customer/main/product.tpl, delete the following code: {if $active_modules.Detailed_Product_Images and [...]]]></description>
			<content:encoded><![CDATA[<p>As we know, at x-cart 2 colomns template, product thumbnail of detailed product page is at the left.</p>
<p>How can we change the Product Thumbnai to center, and at the same time, remove the default left space?</p>
<p><strong>Remove the Detailed Product Page Product Thumbnail Place:</strong><br />
1. open skin/common_files/customer/main/product.tpl, delete the following code:<span id="more-202"></span><br />
<code><br />
<table>
<tr>
<td nowrap="nowrap">
<div class="image"{if $max_image_width gt 0} style="width: {$max_image_width}px;"{/if}>
<p>      {if $active_modules.Detailed_Product_Images and $config.Detailed_Product_Images.det_image_popup eq 'Y' and $images ne ''}</p>
<p>        {include file="modules/Detailed_Product_Images/widget.tpl"}</p>
<p>      {else}</p>
<div class="image-box">
          {include file="product_thumbnail.tpl" productid=$product.image_id image_x=$product.image_x image_y=$product.image_y product=$product.product tmbn_url=$product.image_url id="product_thumbnail" type=$product.image_type}
        </div>
<p>      {/if}</p>
<p>      {if $active_modules.Magnifier and $config.Magnifier.magnifier_image_popup eq 'Y' and $zoomer_images}<br />
        {include file="modules/Magnifier/popup_magnifier.tpl"}<br />
      {/if}</p></div>
</td>
</tr>
</table>
<p></code></p>
<p>2. open skin/2-columns/customer/main/product_details.tpl, and paste the above code under:<br />
<code>  {if $active_modules.Gift_Registry and $wishlistid}</p>
<input type="hidden" name="fwlitem" value="{$wishlistid}" />
<input type="hidden" name="eventid" value="{$eventid}" />
  {/if}<br />
</code></p>
<p><strong>Remove Default Left Space</strong><br />
Open skin/common_files/customer/main/product.tpl, find:<br />
<code>
<div class="product-details">
<div class="details"{if $max_image_width gt 0} style="margin-left: {$max_image_width}px;"{/if}>
</code><br />
and change it to:<br />
<code>
<div class="product-details">
<div>
</code></p>
<p>Done!</p>
]]></content:encoded>
			<wfw:commentRss>http://kingphp.com/202.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.625 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-05-18 13:34:57 -->

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: kingphp.com @ 2012-05-18 13:34:57 -->
