<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3-RC1" -->
<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/"
	>

<channel>
	<title>MyBlogPlanner</title>
	<link>http://www.myblogplanner.com/blog</link>
	<description></description>
	<pubDate>Wed, 10 Feb 2010 07:23:26 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3-RC1</generator>
	<language>en</language>
			<item>
		<title>Ion Cube installtion in linux dedicated server.</title>
		<link>http://www.myblogplanner.com/blog/ion-cube/</link>
		<comments>http://www.myblogplanner.com/blog/ion-cube/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 07:22:41 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
		
		<category><![CDATA[cent os]]></category>

		<category><![CDATA[dedicated server]]></category>

		<category><![CDATA[ioncube]]></category>

		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/ion-cube-installtion-in-linux-dedicated-server/</guid>
		<description><![CDATA[Hi All,
If you have dedicated server and like to install ioncube on your server without any hassle then follow my below notes to do easy installtion.
Let me introduce you what is ioncube. 
ioncube is basically a encoder (encryption method) used to help protect the php files from software  piracy. It is normally used by software [...]]]></description>
			<content:encoded><![CDATA[<p>Hi All,</p>
<p>If you have dedicated server and like to install ioncube on your server without any hassle then follow my below notes to do easy installtion.</p>
<p><strong>Let me introduce you what is ioncube. </strong></p>
<p>ioncube is basically a encoder (encryption method) used to help protect the php files from software  piracy. It is normally used by software vendors to deliver their php  software(s) in some sort of encoded format to help protect their  copyrights and licensing distribution.</p>
<p>Here is the installtion procedure.</p>
<p><strong> You can always download latest version of ioncube from this below link.</strong></p>
<p>http://www.ioncube.com/loaders.php</p>
<p>Step 1: Use wget command to download the latest version of ioncube in your linux  server.</p>
<pre>wget http://downloads2.ioncube.com/loader_downloads/ioncube_loaders_lin_x86.tar.gz</pre>
<pre>Step 2: Untar the package and place ioncube in proper directory.</pre>
<pre>tar -zxvf ioncube_loaders.tar.gz</pre>
<pre>cd ioncube</pre>
<pre>mv ioncube /usr/local/</pre>
<p>Step 3: Check your php.ini file using grep command or you can find out from your web browser Just create one file phpinfo.php and add &lt;?php phpinfo();?&gt; and check where is your php.ini file is located.</p>
<p>Or simply you can use this command to find out your php.ini file</p>
<pre>php -i | grep php.ini</pre>
<pre>Step 4: Edit your php.ini file using vi or emacs or nano</pre>
<pre>        Generally php.ini located in this path /usr/local/lib/php.ini</pre>
<pre>        So your command may be</pre>
<pre>        vi /usr/local/lib/php.ini</pre>
<pre>        or</pre>
<pre>        emacs /usr/local/lib/php.ini</pre>
<pre>        or</pre>
<pre>        nano /usr/local/lib/php.ini</pre>
<pre>Step 4: Then, add the below line in the php.ini</pre>
<pre>zend_extension=/usr/local/ioncube/ioncube_loader_lin_5.2.so</pre>
<pre></pre>
<pre>Congratulation your ion cube software installed.</pre>
<pre>You can check that from phpinfo.php or just writing a unix command.</pre>
<pre>root@subikar [/home/myblogplanner]# php -v
<font color="#339966">PHP 5.2.9 (cgi) (built: Feb  9 2010 13:26:04)
Copyright (c) 1997-2009 The PHP Group
Zend Engine v2.2.0, Copyright (c) 1998-2009 Zend Technologies
    with the ionCube PHP Loader v3.3.10, Copyright (c) 2002-2009, by ionCube Ltd.</font></pre>
<pre></pre>
<p>The green color text is indicating you have successfully installed ion cube in your server.</p>
<p>If you need any help in this matter you can just make call to my number +919836892283 or 033 25290568</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/ion-cube/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to add external javascript and stylesheet in joomla component</title>
		<link>http://www.myblogplanner.com/blog/external-script-joomla/</link>
		<comments>http://www.myblogplanner.com/blog/external-script-joomla/#comments</comments>
		<pubDate>Thu, 17 Sep 2009 07:41:24 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
		
		<category><![CDATA[component]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[joomla]]></category>

		<category><![CDATA[stylesheet]]></category>

		<category><![CDATA[validate]]></category>

		<category><![CDATA[w3 validation]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/external-script-joomla/</guid>
		<description><![CDATA[This is very easy step you can add external javascript or css in head tag of the page.  According to seo you cannot add javascript/css  in the middle of the page.
So here is the code snippet.
$document =&#38; JFactory::getDocument();
$document-&#62;addStyleSheet($stylesheeturl.&#8217;styles.css&#8217;);
$document-&#62;addScript($jsurl.&#8217;scripts.js&#8217;);
Have a happy w3c validate page 
]]></description>
			<content:encoded><![CDATA[<p>This is very easy step you can add external javascript or css in head tag of the page.  According to seo you cannot add javascript/css  in the middle of the page.</p>
<p>So here is the code snippet.</p>
<p>$document =&amp; JFactory::getDocument();</p>
<p>$document-&gt;addStyleSheet($stylesheeturl.&#8217;styles.css&#8217;);</p>
<p>$document-&gt;addScript($jsurl.&#8217;scripts.js&#8217;);</p>
<p>Have a happy w3c validate page <img src='http://www.myblogplanner.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/external-script-joomla/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Import and export  big db in linux</title>
		<link>http://www.myblogplanner.com/blog/import-and-export-big-db-in-linux/</link>
		<comments>http://www.myblogplanner.com/blog/import-and-export-big-db-in-linux/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 21:22:18 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
		
		<category><![CDATA[linux]]></category>

		<category><![CDATA[phpmyadmin]]></category>

		<category><![CDATA[export db]]></category>

		<category><![CDATA[import db]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[mysqldump]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/import-and-export-big-db-in-linux/</guid>
		<description><![CDATA[Here is my short blog post lets share with my friends who are learning linux and want to import or export data to phpmyadmin using linux. So here is the code for that.
Data Export in linux
mysqldump -u dbusername -h dbhost -pdbpassword dbname &#62; dbname.sql
Data Import in linux
mysql -u dbusername -h dbhost -pdbpassword dbname &#60; dbname.sql
This [...]]]></description>
			<content:encoded><![CDATA[<p>Here is my short blog post lets share with my friends who are learning linux and want to import or export data to phpmyadmin using linux. So here is the code for that.</p>
<p><strong>Data Export in linux</strong></p>
<p>mysqldump -u dbusername -h dbhost -pdbpassword dbname &gt; dbname.sql</p>
<p><strong>Data Import in linux</strong></p>
<p>mysql -u dbusername -h dbhost -pdbpassword dbname &lt; dbname.sql</p>
<p>This will solve your problem when you are not able to upload or download db from user inetrface of phpmyadmin.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/import-and-export-big-db-in-linux/feed/</wfw:commentRss>
		</item>
		<item>
		<title>How to create simple block module in drupal 6.x</title>
		<link>http://www.myblogplanner.com/blog/block-module-drupal-6-x/</link>
		<comments>http://www.myblogplanner.com/blog/block-module-drupal-6-x/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 06:55:10 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
		
		<category><![CDATA[block]]></category>

		<category><![CDATA[cms]]></category>

		<category><![CDATA[community]]></category>

		<category><![CDATA[drupal]]></category>

		<category><![CDATA[drupal 6.x]]></category>

		<category><![CDATA[module]]></category>

		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/how-to-create-simple-block-module-in-drupal-6x/</guid>
		<description><![CDATA[Creating simple block module in drupal is easy you just need to concentrate on this artcile to learn to create simple block module in drupal step by step.
For drupal all block module whould uploaded to the folder sites/all/modules
Suppose I am creating an exampl module to display news from a single category.
Step 1: You Need to [...]]]></description>
			<content:encoded><![CDATA[<p>Creating simple block module in drupal is easy you just need to concentrate on this artcile to learn to create simple block module in drupal step by step.</p>
<p>For drupal all block module whould uploaded to the folder sites/all/modules</p>
<p>Suppose I am creating an exampl module to display news from a single category.</p>
<p>Step 1: You Need to create one folder mydrupalnews and under that folder you need to crate 2 file mydrupalnews.info and mydrupalnews.module</p>
<p>Step 2:  File mydrupalnews.info contain the information about the block</p>
<blockquote>
<blockquote>
<p align="left"> ;$Id$<br />
name = mydrupalnews<br />
version = 1.0<br />
description = &#8220;My Drupal News&#8221;<br />
core = 6.x<br />
PHP = 4.3</p></blockquote>
</blockquote>
<p>Step 4: file mydrupalnews.module contains the behavior of the block. In programming language I can say you need to code what ever you like here.</p>
<p>I am pasting the content of the file here for better understand  of the coding.</p>
<blockquote><p>&lt;?php</p>
<p>function mydrupalnews_block($op=&#8217;list&#8217;,$delta=array(),$edit=array())<br />
{<br />
switch ($op)<br />
{</p>
<p>case &#8216;list&#8217;:<br />
$blocks[0][&#8217;info&#8217;] = t(&#8217;My Drupal News&#8217;);<br />
return $blocks;<br />
break;<br />
case &#8216;view&#8217;:<br />
ob_start();<br />
$content = ob_get_clean();</p>
<p>$SQL = &#8216;Select * from category_node as cn<br />
left join node as n  on cn.nid = n.nid<br />
left join image_attach as ia on cn.nid = ia.nid<br />
left join image as i on ia.iid = i.nid<br />
left join files  as f on i.fid = f.fid<br />
Where cn.cid =53 AND i.image_size = \&#8217;_original\&#8217; order by n.nid desc LIMIT 0,3&#8242;;</p></blockquote>
<blockquote><p>// 53 is the category id of my site news. For your site you can change it easily.</p></blockquote>
<blockquote><p>
$rowobj = db_query($SQL);<br />
$content = &#8216;&lt;div class=&#8221;news&#8221;&gt;My Drupal News&lt;/div&gt;&#8217;;</p>
<p>while($Row  = db_fetch_array($rowobj))<br />
{<br />
$content .= &#8216;&lt;div class=&#8221;box&#8221;&gt;&lt;div class=&#8221;img_box&#8221;&gt;&lt;div class=&#8221;img&#8221;&gt;&lt;img src=&#8221;&#8216;.$Row[&#8217;filepath&#8217;].&#8217;&#8221; width=&#8221;92&#8243; height=&#8221;92&#8243;&gt;&lt;/div&gt;<br />
&lt;div class=&#8221;img_text&#8221;&gt;&lt;a href=&#8221;node/&#8217;.$Row[&#8217;nid&#8217;].&#8217;&#8221;&gt;&lt;strong&gt;&#8217;.$Row[&#8217;title&#8217;].&#8217;&lt;/strong&gt;&lt;/a&gt;&lt;br&gt; &lt;font color=&#8221;#996666&#8243; style=&#8221;font-size:10px; padding-left:5px;&#8221; &gt;&#8217;.date(&#8217;Y-m-d&#8217;,$Row[&#8217;created&#8217;]).&#8217;&lt;/font&gt;&lt;/div&gt;<br />
&lt;/div&gt;<br />
&lt;/div&gt;&#8217;;<br />
}</p>
<p>$blocks[&#8217;subject&#8217;] = t(&#8217;My Drupal News&#8217;);<br />
$blocks[&#8217;content&#8217;] = $content;<br />
return $blocks;<br />
break;<br />
}<br />
}</p></blockquote>
<p>You are done with your programming. After everything done you just need to upload the folder mydrupalnews to the folder sites/all/modules</p>
<p>Now login to administrator go to module link publish your custom module. Now go to block link you will see your block is listed there in block page change the position where you want to display the block in your drupal page.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/block-module-drupal-6-x/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Currency converter calculator in php</title>
		<link>http://www.myblogplanner.com/blog/currency-converter/</link>
		<comments>http://www.myblogplanner.com/blog/currency-converter/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 17:38:57 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
		
		<category><![CDATA[converter]]></category>

		<category><![CDATA[currecny]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[currency converter]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/currency-converter/</guid>
		<description><![CDATA[ function show_currency (amount,srcCurrency,dstcurrency) { open ( "http://www.myblogplanner.com/blog/demo/currencycode/currency.php?amount="+amount+"&#038;srcCurrency="+srcCurrency+"&#038;dstcurrency="+dstcurrency, "shipping_calculator", "width=400,height=400" ); }
I hope a lot of people will like this module.
Let me show you the demo work here if you like it just click here for Free Download. And install it to your website.
Step guide how to install and use to your own website.
1. Download [...]]]></description>
			<content:encoded><![CDATA[<p><script language="javascript" type="text/javascript"> function show_currency (amount,srcCurrency,dstcurrency) { open ( "http://www.myblogplanner.com/blog/demo/currencycode/currency.php?amount="+amount+"&#038;srcCurrency="+srcCurrency+"&#038;dstcurrency="+dstcurrency, "shipping_calculator", "width=400,height=400" ); }</script></p>
<p>I hope a lot of people will like this module.</p>
<p>Let me show you the <a href="javascript:show_currency('100','USD','INR')">demo</a> work here if you like it just click here for <a href="http://www.myblogplanner.com/blog/demo/currencycode.zip" title="Currency Converter calculator in php">Free Download</a>. And install it to your website.</p>
<p>Step guide how to install and use to your own website.</p>
<p>1. Download the code from here <a href="http://www.myblogplanner.com/blog/demo/currencycode.zip" title="Currency Converter calculator in php">Free Download</a></p>
<p>2.  Add your db details to currency.php file And run the sql (tblcurcontrycode.sql) through phpmyadmin.</p>
<p>3. Run the script currency.php through browser you are done.</p>
<p>If you need any help just drop an email to subikar (at) itcslive.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/currency-converter/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Digital forums resgiter problem for last 10 week.</title>
		<link>http://www.myblogplanner.com/blog/digitalpoints-forums/</link>
		<comments>http://www.myblogplanner.com/blog/digitalpoints-forums/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 08:55:38 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
		
		<category><![CDATA[forums]]></category>

		<category><![CDATA[myblogplanner]]></category>

		<category><![CDATA[class_dm]]></category>

		<category><![CDATA[digita forum]]></category>

		<category><![CDATA[fatal error]]></category>

		<category><![CDATA[forum]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[register]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/digitalpoints-forums/</guid>
		<description><![CDATA[Last 2 month ago one of my office colleague signed up with digital forums and got  error and even not received any email from digital point
Fatal error: Existing data passed is not an array
Called set_existing in /home/sites/forums.digitalpoint.com/web/register.php on line 385
in /includes/class_dm.php on line 235
I thought it may be they have updated  some code so it [...]]]></description>
			<content:encoded><![CDATA[<p>Last 2 month ago one of my office colleague signed up with digital forums and got  error and even not received any email from digital point</p>
<p>Fatal error: Existing data passed is not an array<br />
Called set_existing in /home/sites/forums.digitalpoint.com/web/register.php on line 385<br />
in /includes/class_dm.php on line 235</p>
<p>I thought it may be they have updated  some code so it is not working and will get fixed after some day.</p>
<p>Today I tried again with digital forums I am not able to login with my id. I have tried with some other friend id that was too not working. So I tried to sign up for an account and unfortunately the same error I see again</p>
<p>Fatal error: Existing data passed is not an array<br />
Called set_existing in /home/sites/forums.digitalpoint.com/web/register.php on line 385<br />
in /includes/class_dm.php on line 235</p>
<p>It seems dp is not doing any development or testing to there script. Do any one have any idea or facing problem like me. Please share your thought so me and other can get help on the matter.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/digitalpoints-forums/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Auto Login Joomla function</title>
		<link>http://www.myblogplanner.com/blog/auto-login-joomla/</link>
		<comments>http://www.myblogplanner.com/blog/auto-login-joomla/#comments</comments>
		<pubDate>Wed, 27 May 2009 19:27:02 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
		
		<category><![CDATA[cms]]></category>

		<category><![CDATA[it professional]]></category>

		<category><![CDATA[joomla]]></category>

		<category><![CDATA[myblogplanner]]></category>

		<category><![CDATA[]]></category>

		<category><![CDATA[auto login]]></category>

		<category><![CDATA[mainframe]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/auto-login-joomla/</guid>
		<description><![CDATA[One of my client always like to sent mail to his members with updates of the website to make them participate. For long time he was demanded me a auto login system in joomla.
Today at last we got the solution how we can do it. I am sharing this with you hope that may help [...]]]></description>
			<content:encoded><![CDATA[<p>One of my client always like to sent mail to his members with updates of the website to make them participate. For long time he was demanded me a auto login system in joomla.</p>
<p>Today at last we got the solution how we can do it. I am sharing this with you hope that may help a lot of people.</p>
<p>function FnAutoLogin($ActivateID)<br />
{</p>
<p>global $mainframe;<br />
$db = JFactory::getDBO();<br />
$Password =  FnGenerateNewPassword(&#8217;9&#8242;); // <a href="http://www.myblogplanner.com/blog/joomla-password-function/" alt="Joomla Password Function" title="Joomla Password Function">Generating joomla password</a></p>
<p>//Fetching User Details according to Activation ID start</p>
<p>$query = &#8220;select * from #__users where activation=&#8217;&#8221;.$ActivateID.&#8221;&#8216;&#8221;;<br />
$db-&gt;setQuery( $query );<br />
$UserDetailsInArray = $db-&gt;loadObjectList();</p>
<p>//Fetching User Details according to Activation ID end</p>
<p>if(isset($UserDetailsInArray[0]))<br />
{<br />
$TempPassword = $UserDetailsInArray[0]-&gt;password;   // Storing user actual password</p>
<p>$query1 = &#8220;update #__users set password=&#8217;&#8221;.$Password.&#8221;&#8216; where activation =&#8217;&#8221;.$id.&#8221;&#8216;&#8221;; //Updating temporary password<br />
$db-&gt;setQuery( $query1 );<br />
if($db-&gt;query())<br />
{<br />
//                      User Login start</p>
<p>$usersipass[&#8217;username&#8217;] = $UserDetailsInArray[0]-&gt;username;<br />
$usersipass[&#8217;password&#8217;] = &#8216;9&#8242;;<br />
$mainframe-&gt;login($usersipass);</p>
<p>//                      User Login end<br />
$query1 = &#8220;update #__users set password=&#8217;&#8221;.$TempPassword.&#8221;&#8216;, block=0 where activation =&#8217;&#8221;.$ActivateID.&#8221;&#8216;&#8221;; //Update user actual password againand redirect to your appropriate page you like <img src='http://www.myblogplanner.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
$db-&gt;setQuery( $query1 );<br />
if($db-&gt;query())<br />
{<br />
$Msg = &#8216;Please upload your picture to see your profile.&#8217;;<br />
$mainframe-&gt;redirect( &#8216;index.html&#8217;,$Msg);<br />
}<br />
}<br />
}<br />
else<br />
{<br />
echo &#8216;You don\&#8217;t have account yet? &lt;a href=&#8221;/join.html&#8221;&gt;Join Us Today &lt;/a&gt;&#8217;;<br />
}<br />
}</p>
<p>Hope this will help a lot of developer to make auto login system in joomla. <img src='http://www.myblogplanner.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<input id="gwProxy" type="hidden" /><!--Session data--><br />
<input onclick="jsCall();" id="jsProxy" type="hidden" />
<input id="gwProxy" type="hidden" /><!--Session data--></p>
<input onclick="jsCall();" id="jsProxy" type="hidden" />
<input id="gwProxy" type="hidden" /><!--Session data--></p>
<input onclick="jsCall();" id="jsProxy" type="hidden" />
<input id="gwProxy" type="hidden" /><!--Session data--><br />
<input onclick="jsCall();" id="jsProxy" type="hidden" />
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/auto-login-joomla/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Create New joomla password function</title>
		<link>http://www.myblogplanner.com/blog/joomla-password-function/</link>
		<comments>http://www.myblogplanner.com/blog/joomla-password-function/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 19:20:57 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
		
		<category><![CDATA[cms]]></category>

		<category><![CDATA[joomla]]></category>

		<category><![CDATA[myblogplanner]]></category>

		<category><![CDATA[subikar]]></category>

		<category><![CDATA[joomla password]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[programming]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/joomla-password-function/</guid>
		<description><![CDATA[Let me show you how you can create joomla password function
Here is the exmaple how you can create joomla 1.5.x password function.
function FnGenerateNewPassword($Password)
{
jimport(&#8217;joomla.user.helper&#8217;);
$salt        = JUserHelper::genRandomPassword(32);
$crypt        = JUserHelper::getCryptedPassword($Password, $salt);
$password    = $crypt.&#8217;:&#8217;.$salt;
return  $password;
}
Hope this will help you in some program.  


]]></description>
			<content:encoded><![CDATA[<p>Let me show you how you can create joomla password function</p>
<p>Here is the exmaple how you can create joomla 1.5.x password function.</p>
<p>function FnGenerateNewPassword($Password)<br />
{<br />
jimport(&#8217;joomla.user.helper&#8217;);</p>
<p>$salt        = JUserHelper::genRandomPassword(32);<br />
$crypt        = JUserHelper::getCryptedPassword($Password, $salt);<br />
$password    = $crypt.&#8217;:&#8217;.$salt;<br />
return  $password;</p>
<p>}</p>
<p>Hope this will help you in some program. <img src='http://www.myblogplanner.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<input id="gwProxy" type="hidden" /><!--Session data--><br />
<input onclick="jsCall();" id="jsProxy" type="hidden" />
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/joomla-password-function/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Drawing component module</title>
		<link>http://www.myblogplanner.com/blog/drawing-component-module/</link>
		<comments>http://www.myblogplanner.com/blog/drawing-component-module/#comments</comments>
		<pubDate>Mon, 01 Dec 2008 21:51:39 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
		
		<category><![CDATA[cms]]></category>

		<category><![CDATA[drawing module]]></category>

		<category><![CDATA[joomla]]></category>

		<category><![CDATA[drawing]]></category>

		<category><![CDATA[module]]></category>

		<category><![CDATA[sent to friend]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/drawing-component-module/</guid>
		<description><![CDATA[Hi All itcslive introducing a new module for email drawing.
Feature:
This module wil help user to subscribe any drawing image to his email.
I am sharing this module with all give your comment how this is benifit for you.
Drawing Component
Drawing Module
]]></description>
			<content:encoded><![CDATA[<p>Hi All <a href="http://www.itcslive.com" title="Information Technology Consultant Service Live">itcslive</a> introducing a new module for email drawing.</p>
<p>Feature:</p>
<p>This module wil help user to subscribe any drawing image to his email.</p>
<p>I am sharing this module with all give your comment how this is benifit for you.</p>
<p><a href="http://www.myblogplanner.com/blog/drawing-component-module/drawing-component/" rel="attachment wp-att-13" title="Drawing Component">Drawing Component</a></p>
<p><a href="http://www.myblogplanner.com/blog/drawing-component-module/drawing-module/" rel="attachment wp-att-14" title="Drawing Module">Drawing Module</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/drawing-component-module/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Justforjoomla review</title>
		<link>http://www.myblogplanner.com/blog/justforjoomla-review/</link>
		<comments>http://www.myblogplanner.com/blog/justforjoomla-review/#comments</comments>
		<pubDate>Fri, 10 Oct 2008 20:23:16 +0000</pubDate>
		<dc:creator>Subikar</dc:creator>
		
		<category><![CDATA[cms]]></category>

		<category><![CDATA[it professional]]></category>

		<category><![CDATA[joomla]]></category>

		<category><![CDATA[just for joomla]]></category>

		<category><![CDATA[myblogplanner]]></category>

		<category><![CDATA[network]]></category>

		<category><![CDATA[subikar]]></category>

		<category><![CDATA[content management system]]></category>

		<category><![CDATA[developer]]></category>

		<guid isPermaLink="false">http://www.myblogplanner.com/blog/justforjoomla-review/</guid>
		<description><![CDATA[Joomla1.5 is basically the higher version of joomla 1.0 and the open source content management system.It is one of the most successful cms system here internet world.
If you want see my joomla1.5 cms website you can check it here in this url.
http://subikar.justforjoomla.com
You are thinking why I am writing all this stuff to here. Am I [...]]]></description>
			<content:encoded><![CDATA[<p>Joomla1.5 is basically the higher version of joomla 1.0 and the open source content management system.It is one of the most successful cms system here internet world.<br />
If you want see my joomla1.5 cms website you can check it here in this url.<br />
http://subikar.justforjoomla.com</p>
<p>You are thinking why I am writing all this stuff to here. Am I wasting my time ?<br />
Nopes <img src='http://www.myblogplanner.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Actually every one has a dream now a days have one personal website but without investing money. So I will ask them to have your website just today like me. Go to http://www.Justforjoomla.com and have your cms website today.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myblogplanner.com/blog/justforjoomla-review/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
