<?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>Er.Rajesh Dware</title>
	<atom:link href="http://www.drajesh.com.np/feed" rel="self" type="application/rss+xml" />
	<link>http://www.drajesh.com.np</link>
	<description>My Blog My Site My Property</description>
	<lastBuildDate>Mon, 23 Jan 2012 11:02:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>how to dispaly best seller product on home page</title>
		<link>http://www.drajesh.com.np/how-to-dispaly-best-seller-product-on-home-page</link>
		<comments>http://www.drajesh.com.np/how-to-dispaly-best-seller-product-on-home-page#comments</comments>
		<pubDate>Mon, 23 Jan 2012 11:02:18 +0000</pubDate>
		<dc:creator>graj1221</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.drajesh.com.np/?p=60</guid>
		<description><![CDATA[&#62;&#62; Make a bestseller.phtml file in product folder &#60;?php $_helper = $this-&#62;helper(&#8216;catalog/output&#8217;); ?&#62; &#60;?php $_product = $this-&#62;getProduct(); ?&#62; &#60;?php $visibility = array( Mage_Catalog_Model_Product_Visibility::VISIBILITY_BOTH, Mage_Catalog_Model_Product_Visibility::VISIBILITY_IN_CATALOG ); $_productCollection = Mage::getResourceModel(&#8216;reports/product_collection&#8217;) -&#62;addAttributeToSelect(&#8216;*&#8217;) -&#62;addOrderedQty() -&#62;addAttributeToFilter(&#8216;visibility&#8217;, $visibility) -&#62;setOrder(&#8216;ordered_qty&#8217;, &#8216;desc&#8217;); ?&#62; &#60;div&#62; &#60;h2&#62;Best Sellers&#60;/h2&#62; &#60;div&#62; &#60;div&#62; &#8230; <a href="http://www.drajesh.com.np/how-to-dispaly-best-seller-product-on-home-page">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>&gt;&gt; Make a bestseller.phtml file in product folder</p>
<p>&lt;?php $_helper = $this-&gt;helper(&#8216;catalog/output&#8217;); ?&gt;<br />
&lt;?php $_product = $this-&gt;getProduct(); ?&gt;<br />
&lt;?php<br />
$visibility = array(<br />
Mage_Catalog_Model_Product_Visibility::VISIBILITY_BOTH,<br />
Mage_Catalog_Model_Product_Visibility::VISIBILITY_IN_CATALOG<br />
);</p>
<p>$_productCollection = Mage::getResourceModel(&#8216;reports/product_collection&#8217;)<br />
-&gt;addAttributeToSelect(&#8216;*&#8217;)<br />
-&gt;addOrderedQty()<br />
-&gt;addAttributeToFilter(&#8216;visibility&#8217;, $visibility)<br />
-&gt;setOrder(&#8216;ordered_qty&#8217;, &#8216;desc&#8217;);</p>
<p>?&gt;</p>
<p>&lt;div&gt;<br />
&lt;h2&gt;Best Sellers&lt;/h2&gt;</p>
<p>&lt;div&gt;</p>
<p>&lt;div&gt;<br />
&lt;ul id=&#8221;mycarousel&#8221;&gt;</p>
<p>&lt;?php foreach($_productCollection as $product): ?&gt;</p>
<p>&lt;?php<br />
$categories = null;<br />
foreach (explode(&#8220;,&#8221;, $product-&gt;category_ids) as $catId){</p>
<p>//Mage_Catalog_Model_Category</p>
<p>?&gt;</p>
<p>&lt;?php</p>
<p>$cat = Mage::getModel(&#8216;catalog/category&#8217;)<br />
-&gt;setStoreId(Mage::app()-&gt;getStore()-&gt;getId())<br />
-&gt;load($catId);<br />
$catName = $cat-&gt;getName();</p>
<p>$catLink = $cat-&gt;getUrlPath();</p>
<p>$categories .= &#8216;&lt;a href=&#8221;&#8216;.$catLink.&#8217;&#8221; title=&#8221;&#8216;.$catName.&#8217;&#8221;&gt;&#8217;.$catName.&#8217;&lt;/a&gt;&amp;nbsp;&amp;nbsp;&#8217;;<br />
}</p>
<p>?&gt;</p>
<p>&lt;?php //if($counter &lt;= $totalPerPage): ?&gt;</p>
<p>&lt;?php $productUrl =  $product-&gt;getProductUrl() ?&gt;</p>
<p>&lt;li&gt;<br />
&lt;div&gt;<br />
&lt;div&gt;<br />
&lt;table border=&#8221;0&#8243; cellpadding=&#8221;0&#8243; cellspacing=&#8221;0&#8243;&gt;<br />
&lt;tr&gt;<br />
&lt;td&gt;</p>
<p>&lt;a href=&#8221;&lt;?php echo $productUrl ?&gt;&#8221; title=&#8221;View &lt;?php echo $product-&gt;name ?&gt;&#8221;&gt;<br />
&lt;img src=&#8221;&lt;?php echo $this-&gt;helper(&#8216;catalog/image&#8217;)-&gt;init($product, &#8216;image&#8217;)-&gt;resize(120); ?&gt;&#8221; alt=&#8221;Product image&#8221;<br />
rel=&#8221;black&#8221; /&gt;<br />
&lt;/a&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;<br />
&lt;h3&gt;&lt;?php echo $product-&gt;name ?&gt;&lt;span&gt; &lt;?=$catName?&gt;&lt;/span&gt;&lt;?php echo Mage::helper(&#8216;core&#8217;)-&gt;currency($product-&gt;price) ?&gt;&lt;/span&gt;&lt;/h3&gt;<br />
&lt;p&gt;&lt;a href=&#8221;&lt;?php echo $productUrl ?&gt;&#8221;&gt;View details&lt;/a&gt;&lt;a href=&#8221;&lt;?php echo $productUrl ?&gt;&#8221;&gt;&lt;button type=&#8221;button&#8221; title=&#8221;&lt;?php echo $this-&gt;__(&#8216;Add to Cart&#8217;) ?&gt;&#8221; id=&#8221;bt&#8221;&gt;&lt;span&gt;&lt;?php echo $this-&gt;__(&#8216;Add to Cart&#8217;) ?&gt;&lt;/span&gt;&lt;/button&gt;&lt;/a&gt;&lt;/p&gt;<br />
&lt;/div&gt;<br />
&lt;/li&gt;</p>
<p>&lt;?php<br />
$cats = Mage::getModel(&#8216;catalog/category&#8217;) -&gt; load($curent_cat_id) -&gt; getChildren();<br />
$catIds = explode(&#8216;,&#8217;, $cats);<br />
//$cats = Mage::getModel(&#8216;catalog/category&#8217;) -&gt; load($curent_cat_id) -&gt; getChildren();<br />
?&gt;<br />
&lt;?php //echo $catIds[0];?&gt;</p>
<p>&lt;?php<br />
$_category = Mage::getModel(&#8216;catalog/category&#8217;)-&gt;load($catIds[0]);<br />
?&gt;<br />
&lt;div&gt;&lt;a href=&#8221;&lt;?php echo $_category-&gt;getURL() ?&gt;&#8221; title=&#8221;View Products&#8221;&gt;ENTER&lt;/a&gt;&lt;/div&gt;</p>
<p>&lt;?php //endif; echo $counter++; ?&gt;<br />
&lt;?php endforeach; ?&gt;<br />
&lt;/ul&gt;<br />
&lt;/div&gt;</p>
<p>&lt;/div&gt;<br />
&lt;/div&gt;</p>
<p>&nbsp;</p>
<p>&gt;&gt; On Home page content place following code</p>
<p>{{block type=&#8221;catalog/product_list&#8221; alias=&#8221;product_homepage&#8221; template=&#8221;catalog/product/bestseller.phtml&#8221;}}</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drajesh.com.np/how-to-dispaly-best-seller-product-on-home-page/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to display related product in view page</title>
		<link>http://www.drajesh.com.np/how-to-display-related-product-in-view-page</link>
		<comments>http://www.drajesh.com.np/how-to-display-related-product-in-view-page#comments</comments>
		<pubDate>Mon, 23 Jan 2012 05:10:06 +0000</pubDate>
		<dc:creator>graj1221</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.drajesh.com.np/?p=57</guid>
		<description><![CDATA[&#62;&#62; On catalog.xml &#62;&#62; Place the following code in the &#60;catalog_product_view translate=&#8221;label&#8221;&#62; &#60;label&#62;Catalog Product View (Any)&#60;/label&#62; &#60;reference name=&#8221;content&#8221;&#62;             &#60;block type=&#8221;catalog/product_list_related&#8221; name=&#8221;catalog.product.related&#8221; after=&#8221;product.info&#8221; template=&#8221;catalog/product/list/related.phtml&#8221;/&#62;         &#60;/reference&#62; &#60;/catalog_product_view&#62;]]></description>
			<content:encoded><![CDATA[<p>&gt;&gt; On catalog.xml</p>
<p>&gt;&gt; Place the following code in the</p>
<p>&lt;catalog_product_view translate=&#8221;label&#8221;&gt;<br />
&lt;label&gt;Catalog Product View (Any)&lt;/label&gt;</p>
<p><strong>&lt;reference name=&#8221;content&#8221;&gt;</strong><br />
<strong>            &lt;block type=&#8221;catalog/product_list_related&#8221; name=&#8221;catalog.product.related&#8221; after=&#8221;product.info&#8221; template=&#8221;catalog/product/list/related.phtml&#8221;/&gt;</strong><br />
<strong>        &lt;/reference&gt;</strong></p>
<p>&lt;/catalog_product_view&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drajesh.com.np/how-to-display-related-product-in-view-page/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to put Currency Option in header</title>
		<link>http://www.drajesh.com.np/how-to-put-currency-option-in-header</link>
		<comments>http://www.drajesh.com.np/how-to-put-currency-option-in-header#comments</comments>
		<pubDate>Fri, 06 Jan 2012 08:49:22 +0000</pubDate>
		<dc:creator>graj1221</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[Magento-header]]></category>

		<guid isPermaLink="false">http://www.drajesh.com.np/?p=53</guid>
		<description><![CDATA[Call the currency in the header.phtml &#60;?php echo $this-&#62;getChildHtml(&#8216;store_currency_selector&#8217;) ?&#62; In the page.xml put the following code in header reference &#60;block type=&#8221;page/html_header&#8221; name=&#8221;header&#8221; as=&#8221;header&#8221;&#62; &#60;block type=&#8221;directory/currency&#8221; name=&#8221;store_currency_selector&#8221; as=&#8221;store_currency_selector&#8221; template=&#8221;directory/currency.phtml&#8221;/&#62; For the design change in the following file template&#62;&#62; directory &#62;&#62; &#8230; <a href="http://www.drajesh.com.np/how-to-put-currency-option-in-header">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Call the currency in the header.phtml</p>
<p>&lt;?php echo $this-&gt;getChildHtml(&#8216;store_currency_selector&#8217;) ?&gt;</p>
<p>In the page.xml put the following code in header reference</p>
<p>&lt;block type=&#8221;page/html_header&#8221; name=&#8221;header&#8221; as=&#8221;header&#8221;&gt;<br />
&lt;block type=&#8221;directory/currency&#8221; name=&#8221;store_currency_selector&#8221; as=&#8221;store_currency_selector&#8221; template=&#8221;directory/currency.phtml&#8221;/&gt;</p>
<p>For the design change in the following file</p>
<p>template&gt;&gt; directory &gt;&gt; currency.phtml</p>
<p>For the currency option in drop down go to admin &gt;&gt; system &gt;&gt; configuration &gt;&gt; currency option  &gt;&gt; choose the currencies that will be in options</p>
<p>Then go to admin&gt;&gt; system&gt;&gt;manage currency rate</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drajesh.com.np/how-to-put-currency-option-in-header/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Javascript Live Clock</title>
		<link>http://www.drajesh.com.np/javascript-live-clock</link>
		<comments>http://www.drajesh.com.np/javascript-live-clock#comments</comments>
		<pubDate>Sun, 01 Jan 2012 06:02:56 +0000</pubDate>
		<dc:creator>graj1221</dc:creator>
				<category><![CDATA[Javascript]]></category>

		<guid isPermaLink="false">http://www.drajesh.com.np/?p=50</guid>
		<description><![CDATA[&#60;html&#62; &#60;head&#62; &#60;script type=&#8221;text/javascript&#8221;&#62; function startTime() { var today=new Date(); var h=today.getHours(); var m=today.getMinutes(); var s=today.getSeconds(); // add a zero in front of numbers&#60;10 m=checkTime(m); s=checkTime(s); document.getElementById(&#8216;txt&#8217;).innerHTML=h+&#8221;:&#8221;+m+&#8221;:&#8221;+s; t=setTimeout(&#8216;startTime()&#8217;,500); } function checkTime(i) { if (i&#60;10)   {   i=&#8221;0&#8243; + i;   } return &#8230; <a href="http://www.drajesh.com.np/javascript-live-clock">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div>&lt;html&gt;</div>
<div>&lt;head&gt;</div>
<div>&lt;script type=&#8221;text/javascript&#8221;&gt;</div>
<div>function startTime()</div>
<div>{</div>
<div>var today=new Date();</div>
<div>var h=today.getHours();</div>
<div>var m=today.getMinutes();</div>
<div>var s=today.getSeconds();</div>
<div>// add a zero in front of numbers&lt;10</div>
<div>m=checkTime(m);</div>
<div>s=checkTime(s);</div>
<div>document.getElementById(&#8216;txt&#8217;)<wbr>.innerHTML=h+&#8221;:&#8221;+m+&#8221;:&#8221;+s;</wbr></div>
<div>t=setTimeout(&#8216;startTime()&#8217;,<wbr>500);</wbr></div>
<div>}</div>
<div></div>
<div>function checkTime(i)</div>
<div>{</div>
<div>if (i&lt;10)</div>
<div>  {</div>
<div>  i=&#8221;0&#8243; + i;</div>
<div>  }</div>
<div>return i;</div>
<div>}</div>
<div>&lt;/script&gt;</div>
<div>&lt;/head&gt;</div>
<div></div>
<div>&lt;body onload=&#8221;startTime()&#8221;&gt;</div>
<div>&lt;div id=&#8221;txt&#8221;&gt;&lt;/div&gt;</div>
<div>&lt;/body&gt;</div>
<div>&lt;/html&gt;</div>
]]></content:encoded>
			<wfw:commentRss>http://www.drajesh.com.np/javascript-live-clock/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get the table name in Magento</title>
		<link>http://www.drajesh.com.np/how-to-get-the-table-name-in-magento</link>
		<comments>http://www.drajesh.com.np/how-to-get-the-table-name-in-magento#comments</comments>
		<pubDate>Thu, 29 Dec 2011 06:21:50 +0000</pubDate>
		<dc:creator>graj1221</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.drajesh.com.np/?p=44</guid>
		<description><![CDATA[&#60;?php /** * Get the resource model */ $resource = Mage::getSingleton(&#8216;core/resource&#8217;); /** * Get the table name */ $tableName = $resource-&#62;getTableName(&#8216;catalog_product_entity&#8217;); /** * if prefix was &#8216;mage_&#8217; then the below statement * would print out mage_catalog_product_entity */ echo $tableName;]]></description>
			<content:encoded><![CDATA[<p>&lt;?php</p>
<p>/**<br />
* Get the resource model<br />
*/<br />
$resource = Mage::getSingleton(&#8216;core/resource&#8217;);</p>
<p>/**<br />
* Get the table name<br />
*/<br />
$tableName = $resource-&gt;getTableName(&#8216;catalog_product_entity&#8217;);</p>
<p>/**<br />
* if prefix was &#8216;mage_&#8217; then the below statement<br />
* would print out mage_catalog_product_entity<br />
*/<br />
echo $tableName;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drajesh.com.np/how-to-get-the-table-name-in-magento/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to write the insert query in Magento</title>
		<link>http://www.drajesh.com.np/how-to-write-the-insert-query-in-magento</link>
		<comments>http://www.drajesh.com.np/how-to-write-the-insert-query-in-magento#comments</comments>
		<pubDate>Thu, 29 Dec 2011 06:19:41 +0000</pubDate>
		<dc:creator>graj1221</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.drajesh.com.np/?p=41</guid>
		<description><![CDATA[$sql  = &#8220;insert into patient(`first_name`,`last_name`,`email`,`password`,`password_confirm`,`primary_phone`,`alternate_phone`) values (?, ?, ?, ?, ?, ?, ?)&#8221;; $write-&#62;query($sql, array($params['fname'],$params['lname'],$params['email'],$params['password'],$params['password_c'],$params['p_phone'],$params['a_phone'])); &#160; &#62;&#62;$params['lname'] is data fetched from user form.]]></description>
			<content:encoded><![CDATA[<p>$sql  = &#8220;insert into patient(`first_name`,`last_name`,`email`,`password`,`password_confirm`,`primary_phone`,`alternate_phone`) values (?, ?, ?, ?, ?, ?, ?)&#8221;;<br />
$write-&gt;query($sql, array($params['fname'],$params['lname'],$params['email'],$params['password'],$params['password_c'],$params['p_phone'],$params['a_phone']));</p>
<p>&nbsp;</p>
<p>&gt;&gt;$params['lname'] is data fetched from user form.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drajesh.com.np/how-to-write-the-insert-query-in-magento/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to connect to the Database</title>
		<link>http://www.drajesh.com.np/how-to-connect-to-the-database</link>
		<comments>http://www.drajesh.com.np/how-to-connect-to-the-database#comments</comments>
		<pubDate>Thu, 29 Dec 2011 06:17:42 +0000</pubDate>
		<dc:creator>graj1221</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.drajesh.com.np/?p=39</guid>
		<description><![CDATA[$write = Mage::getSingleton(&#8216;core/resource&#8217;)-&#62;getConnection(&#8216;core_write&#8217;); or,* Get the resource model $resource = Mage::getSingleton(&#8216;core/resource&#8217;); /** * Retrieve the read connection */ $readConnection = $resource-&#62;getConnection(&#8216;core_read&#8217;); /** * Retrieve the write connection */ $writeConnection = $resource-&#62;getConnection(&#8216;core_write&#8217;);]]></description>
			<content:encoded><![CDATA[<p>$write = Mage::getSingleton(&#8216;core/resource&#8217;)-&gt;getConnection(&#8216;core_write&#8217;);</p>
<p>or,* Get the resource model</p>
<p>$resource = Mage::getSingleton(&#8216;core/resource&#8217;);</p>
<p>/**<br />
* Retrieve the read connection<br />
*/<br />
$readConnection = $resource-&gt;getConnection(&#8216;core_read&#8217;);</p>
<p>/**<br />
* Retrieve the write connection<br />
*/<br />
$writeConnection = $resource-&gt;getConnection(&#8216;core_write&#8217;);</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drajesh.com.np/how-to-connect-to-the-database/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to remove product tag and product review from frontend</title>
		<link>http://www.drajesh.com.np/how-to-remove-product-tag-and-product-review-from-frontend</link>
		<comments>http://www.drajesh.com.np/how-to-remove-product-tag-and-product-review-from-frontend#comments</comments>
		<pubDate>Thu, 29 Dec 2011 06:15:22 +0000</pubDate>
		<dc:creator>graj1221</dc:creator>
				<category><![CDATA[Magento]]></category>

		<guid isPermaLink="false">http://www.drajesh.com.np/?p=36</guid>
		<description><![CDATA[&#62;&#62; Go to admin &#62;&#62;  system &#62;&#62; configuration &#62;&#62; advanced &#62;&#62; advanced &#62;&#62; disable both Mage_Tag and Mage_Review.]]></description>
			<content:encoded><![CDATA[<p>&gt;&gt; Go to admin &gt;&gt;  system &gt;&gt; configuration &gt;&gt; advanced &gt;&gt; advanced</p>
<p>&gt;&gt; disable both Mage_Tag and Mage_Review.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drajesh.com.np/how-to-remove-product-tag-and-product-review-from-frontend/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make special product in magento</title>
		<link>http://www.drajesh.com.np/how-to-make-specail-product-in-magento</link>
		<comments>http://www.drajesh.com.np/how-to-make-specail-product-in-magento#comments</comments>
		<pubDate>Wed, 28 Dec 2011 10:20:51 +0000</pubDate>
		<dc:creator>graj1221</dc:creator>
				<category><![CDATA[Magento]]></category>
		<category><![CDATA[special product]]></category>

		<guid isPermaLink="false">http://www.drajesh.com.np/?p=32</guid>
		<description><![CDATA[Waiting for it]]></description>
			<content:encoded><![CDATA[<p>Waiting for it</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drajesh.com.np/how-to-make-specail-product-in-magento/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Login Link</title>
		<link>http://www.drajesh.com.np/login-link</link>
		<comments>http://www.drajesh.com.np/login-link#comments</comments>
		<pubDate>Tue, 27 Dec 2011 09:33:12 +0000</pubDate>
		<dc:creator>graj1221</dc:creator>
				<category><![CDATA[Login]]></category>

		<guid isPermaLink="false">http://localhost/wordpress/?p=28</guid>
		<description><![CDATA[&#60;a href=&#8221;&#60;?php echo $this-&#62;getUrl(&#8216;customer/account&#8217;)?&#62;&#8221;&#62;&#60;?php echo $this-&#62;__(&#8216;VIP SIGN IN&#8217;) ?&#62;&#60;/a&#62;]]></description>
			<content:encoded><![CDATA[<p>&lt;a href=&#8221;&lt;?php echo $this-&gt;getUrl(&#8216;customer/account&#8217;)?&gt;&#8221;&gt;&lt;?php echo $this-&gt;__(&#8216;VIP SIGN IN&#8217;) ?&gt;&lt;/a&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.drajesh.com.np/login-link/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

