<?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>thephpx &#187; Uncategorized</title>
	<atom:link href="http://www.thephpx.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thephpx.com</link>
	<description>codeigniter, php, mysql, xhtml, css, jquery, flex web-development blog</description>
	<lastBuildDate>Mon, 26 Jul 2010 05:26:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>codeigniter: helper function to call library or model function in view</title>
		<link>http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/</link>
		<comments>http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/#comments</comments>
		<pubDate>Sat, 15 May 2010 17:43:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[call function view]]></category>
		<category><![CDATA[codeigniter]]></category>
		<category><![CDATA[function in view]]></category>
		<category><![CDATA[view helper]]></category>

		<guid isPermaLink="false">http://www.thephpx.com/?p=75</guid>
		<description><![CDATA[Hi I am back again, This time with two helper function that lets you call any function from any model or library, given you already have the model or library loaded into the instance. This one calls a library function with a single parameter being passed. if&#40;!function_exists&#40;&#8216;call_lib_func&#8217;&#41;&#41;&#123; &#160;function call_lib_func&#40;$library_name, $function_name, $parameters=null&#41;&#123; &#160; $ci = &#38;amp;get_instance&#40;&#41;;]]></description>
			<content:encoded><![CDATA[<p>Hi I am back again,</p>
<p>This time with two helper function that lets you call any function from any model or library, given you already have the model or library loaded into the instance.</p>
<p>This one calls a library function with a single parameter being passed.</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="kw1">if</span><span class="br0">&#40;</span>!<a href="http://www.php.net/function_exists" onclick="pageTracker._trackPageview('/outgoing/www.php.net/function_exists?referer=');"><span class="kw3">function_exists</span></a><span class="br0">&#40;</span><span class="st0">&#8216;call_lib_func&#8217;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="kw2">function</span> call_lib_func<span class="br0">&#40;</span><span class="re0">$library_name</span>, <span class="re0">$function_name</span>, <span class="re0">$parameters</span>=<span class="kw2">null</span><span class="br0">&#41;</span><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="re0">$ci</span> = &amp;amp;get_instance<span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="re0">$ci</span>-&gt;<span class="me1">load</span>-&gt;<span class="me1">library</span><span class="br0">&#40;</span><span class="re0">$library_name</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li2">
<div class="de2">&nbsp; <span class="kw1">return</span> <span class="re0">$ci</span>-&gt;<span class="re0">$library_name</span>-&gt;<span class="re0">$function_name</span><span class="br0">&#40;</span><span class="re0">$parameters</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
<p>The next one calls a model function with a single parameter being passed.</p>
<div class="dean_ch" style="white-space: wrap;">
<ol>
<li class="li1">
<div class="de1"><span class="kw1">if</span><span class="br0">&#40;</span>!<a href="http://www.php.net/function_exists" onclick="pageTracker._trackPageview('/outgoing/www.php.net/function_exists?referer=');"><span class="kw3">function_exists</span></a><span class="br0">&#40;</span><span class="st0">&#8216;call_mod_func&#8217;</span><span class="br0">&#41;</span><span class="br0">&#41;</span><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="kw2">function</span> call_mod_func<span class="br0">&#40;</span><span class="re0">$model_name</span>, <span class="re0">$function_name</span>, <span class="re0">$parameters</span>=<span class="kw2">null</span><span class="br0">&#41;</span><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="re0">$ci</span> = &amp;amp;get_instance<span class="br0">&#40;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; <span class="re0">$ci</span>-&gt;<span class="me1">load</span>-&gt;<span class="me1">model</span><span class="br0">&#40;</span><span class="re0">$model_name</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li2">
<div class="de2">&nbsp; <span class="kw1">return</span> <span class="re0">$ci</span>-&gt;<span class="re0">$model_name</span>-&gt;<span class="re0">$function_name</span><span class="br0">&#40;</span><span class="re0">$parameters</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;<span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
<p>As of now multiple parameter are not yet supported but I will soon post an extension of these two functions that will support multiple parameters. If you choose to use any of these functions feel free to use but a link back to my site is appreciated <img src='http://www.thephpx.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>thanks,</p>
<blockquote><p>thephpx</p></blockquote>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/&amp;title=codeigniter%3A+helper+function+to+call+library+or+model+function+in+view" rel="nofollow" class="external" title="Share this on del.icio.us" onclick="pageTracker._trackPageview('/outgoing/delicious.com/post?url=http_//www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/_amp_title=codeigniter_3A+helper+function+to+call+library+or+model+function+in+view&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/&amp;title=codeigniter%3A+helper+function+to+call+library+or+model+function+in+view" rel="nofollow" class="external" title="Digg this!" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?phase=2_amp_url=http_//www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/_amp_title=codeigniter_3A+helper+function+to+call+library+or+model+function+in+view&amp;referer=');">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/&amp;t=codeigniter%3A+helper+function+to+call+library+or+model+function+in+view" rel="nofollow" class="external" title="Share this on Facebook" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/share.php?v=4_amp_src=bm_amp_u=http_//www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/_amp_t=codeigniter_3A+helper+function+to+call+library+or+model+function+in+view&amp;referer=');">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=codeigniter%3A+helper+function+to+call+library+or+model+function+in+view&amp;body=Link: http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hi%20I%20am%20back%20again%2C%0D%0A%0D%0AThis%20time%20with%20two%20helper%20function%20that%20lets%20you%20call%20any%20function%20from%20any%20model%20or%20library%2C%20given%20you%20already%20have%20the%20model%20or%20library%20loaded%20into%20the%20instance.%0D%0A%0D%0AThis%20one%20calls%20a%20library%20function%20with%20a%20single%20parameter%20being%20passed.%0D%0Aif%28%21function_exists%28%27call_lib_func%27%29%29" rel="nofollow" class="external" title="Email this via Gmail" onclick="pageTracker._trackPageview('/outgoing/mail.google.com/mail/?ui=2_amp_view=cm_amp_fs=1_amp_tf=1_amp_su=codeigniter_3A+helper+function+to+call+library+or+model+function+in+view_amp_body=Link_http_//www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/_sent_via_shareaholic_0D_0A_0D_0A----_0D_0A_Hi_20I_20am_20back_20again_2C_0D_0A_0D_0AThis_20time_20with_20two_20helper_20function_20that_20lets_20you_20call_20any_20function_20from_20any_20model_20or_20library_2C_20given_20you_20already_20have_20the_20model_20or_20library_20loaded_20into_20the_20instance._0D_0A_0D_0AThis_20one_20calls_20a_20library_20function_20with_20a_20single_20parameter_20being_20passed._0D_0Aif_28_21function_exists_28_27call_lib_func_27_29_29&amp;referer=');">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/&amp;title=codeigniter%3A+helper+function+to+call+library+or+model+function+in+view" rel="nofollow" class="external" title="Add this to Google Bookmarks" onclick="pageTracker._trackPageview('/outgoing/www.google.com/bookmarks/mark?op=add_amp_bkmk=http_//www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/_amp_title=codeigniter_3A+helper+function+to+call+library+or+model+function+in+view&amp;referer=');">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz" onclick="pageTracker._trackPageview('/outgoing/www.google.com/buzz/post?url=http_//www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/_amp_imageurl=&amp;referer=');">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/&amp;title=codeigniter%3A+helper+function+to+call+library+or+model+function+in+view&amp;summary=Hi%20I%20am%20back%20again%2C%0D%0A%0D%0AThis%20time%20with%20two%20helper%20function%20that%20lets%20you%20call%20any%20function%20from%20any%20model%20or%20library%2C%20given%20you%20already%20have%20the%20model%20or%20library%20loaded%20into%20the%20instance.%0D%0A%0D%0AThis%20one%20calls%20a%20library%20function%20with%20a%20single%20parameter%20being%20passed.%0D%0Aif%28%21function_exists%28%27call_lib_func%27%29%29&amp;source=thephpx" rel="nofollow" class="external" title="Share this on LinkedIn" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_//www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/_amp_title=codeigniter_3A+helper+function+to+call+library+or+model+function+in+view_amp_summary=Hi_20I_20am_20back_20again_2C_0D_0A_0D_0AThis_20time_20with_20two_20helper_20function_20that_20lets_20you_20call_20any_20function_20from_20any_20model_20or_20library_2C_20given_20you_20already_20have_20the_20model_20or_20library_20loaded_20into_20the_20instance._0D_0A_0D_0AThis_20one_20calls_20a_20library_20function_20with_20a_20single_20parameter_20being_20passed._0D_0Aif_28_21function_exists_28_27call_lib_func_27_29_29_amp_source=thephpx&amp;referer=');">Share this on LinkedIn</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/&amp;t=codeigniter%3A+helper+function+to+call+library+or+model+function+in+view" rel="nofollow" class="external" title="Post this to MySpace" onclick="pageTracker._trackPageview('/outgoing/www.myspace.com/Modules/PostTo/Pages/?u=http_//www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/_amp_t=codeigniter_3A+helper+function+to+call+library+or+model+function+in+view&amp;referer=');">Post this to MySpace</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/" rel="nofollow" class="external" title="Share this on Plaxo" onclick="pageTracker._trackPageview('/outgoing/www.plaxo.com/?share_link=http_//www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/&amp;referer=');">Share this on Plaxo</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/" rel="nofollow" class="external" title="Add to a lense on Squidoo" onclick="pageTracker._trackPageview('/outgoing/www.squidoo.com/lensmaster/bookmark?http_//www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/&amp;referer=');">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/&amp;title=codeigniter%3A+helper+function+to+call+library+or+model+function+in+view" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_//www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/_amp_title=codeigniter_3A+helper+function+to+call+library+or+model+function+in+view&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/" rel="nofollow" class="external" title="Share this on Technorati" onclick="pageTracker._trackPageview('/outgoing/technorati.com/faves?add=http_//www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.thephpx.com%2F2010%2F05%2F16%2Fcodeigniter-helper-function-to-call-library-or-model-function-in-view%2F&amp;t=codeigniter%3A+helper+function+to+call+library+or+model+function+in+view" rel="nofollow" class="external" title="Share this on Tumblr" onclick="pageTracker._trackPageview('/outgoing/www.tumblr.com/share?v=3_amp_u=http_3A_2F_2Fwww.thephpx.com_2F2010_2F05_2F16_2Fcodeigniter-helper-function-to-call-library-or-model-function-in-view_2F_amp_t=codeigniter_3A+helper+function+to+call+library+or+model+function+in+view&amp;referer=');">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=codeigniter%3A+helper+function+to+call+library+or+model+function+in+view+-+http://b2l.me/acqzay&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=codeigniter_3A+helper+function+to+call+library+or+model+function+in+view+-+http_//b2l.me/acqzay_amp_source=shareaholic&amp;referer=');">Tweet This!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=codeigniter%3A+helper+function+to+call+library+or+model+function+in+view&amp;body=Link: http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hi%20I%20am%20back%20again%2C%0D%0A%0D%0AThis%20time%20with%20two%20helper%20function%20that%20lets%20you%20call%20any%20function%20from%20any%20model%20or%20library%2C%20given%20you%20already%20have%20the%20model%20or%20library%20loaded%20into%20the%20instance.%0D%0A%0D%0AThis%20one%20calls%20a%20library%20function%20with%20a%20single%20parameter%20being%20passed.%0D%0Aif%28%21function_exists%28%27call_lib_func%27%29%29" rel="nofollow" class="external" title="Email this via Yahoo! Mail" onclick="pageTracker._trackPageview('/outgoing/compose.mail.yahoo.com/?Subject=codeigniter_3A+helper+function+to+call+library+or+model+function+in+view_amp_body=Link_http_//www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/_sent_via_shareaholic_0D_0A_0D_0A----_0D_0A_Hi_20I_20am_20back_20again_2C_0D_0A_0D_0AThis_20time_20with_20two_20helper_20function_20that_20lets_20you_20call_20any_20function_20from_20any_20model_20or_20library_2C_20given_20you_20already_20have_20the_20model_20or_20library_20loaded_20into_20the_20instance._0D_0A_0D_0AThis_20one_20calls_20a_20library_20function_20with_20a_20single_20parameter_20being_20passed._0D_0Aif_28_21function_exists_28_27call_lib_func_27_29_29&amp;referer=');">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save" onclick="pageTracker._trackPageview('/outgoing/www.addtoany.com/share_save?referer=');"><img src="http://www.thephpx.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.thephpx.com/2010/05/16/codeigniter-helper-function-to-call-library-or-model-function-in-view/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>thephpx reloaded!</title>
		<link>http://www.thephpx.com/2009/07/31/thephpx/</link>
		<comments>http://www.thephpx.com/2009/07/31/thephpx/#comments</comments>
		<pubDate>Sat, 01 Aug 2009 04:02:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[thephpx]]></category>

		<guid isPermaLink="false">http://www.thephpx.com/?p=1</guid>
		<description><![CDATA[Hello everybody, I am back at blogging. This is just the starter hope to come-up with some solid posts ASAP! So, hang-on and keep visiting - thephpx Subscribe to the comments for this post? Share this on del.icio.us Digg this! Share this on Facebook Email this via Gmail Add this to Google Bookmarks Post on]]></description>
			<content:encoded><![CDATA[<p>Hello everybody,</p>
<p>I am back at blogging. This is just the starter hope to come-up with some solid posts ASAP!</p>
<p>So, hang-on and keep visiting <img src='http://www.thephpx.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><strong><em>- thephpx</em></strong></p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-knowledge">
<ul class="socials">
		<li class="shr-comfeed">
			<a href="http://www.thephpx.com/2009/07/31/thephpx/feed" rel="nofollow" class="external" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.thephpx.com/2009/07/31/thephpx/&amp;title=thephpx+reloaded%21" rel="nofollow" class="external" title="Share this on del.icio.us" onclick="pageTracker._trackPageview('/outgoing/delicious.com/post?url=http_//www.thephpx.com/2009/07/31/thephpx/_amp_title=thephpx+reloaded_21&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.thephpx.com/2009/07/31/thephpx/&amp;title=thephpx+reloaded%21" rel="nofollow" class="external" title="Digg this!" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?phase=2_amp_url=http_//www.thephpx.com/2009/07/31/thephpx/_amp_title=thephpx+reloaded_21&amp;referer=');">Digg this!</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.thephpx.com/2009/07/31/thephpx/&amp;t=thephpx+reloaded%21" rel="nofollow" class="external" title="Share this on Facebook" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/share.php?v=4_amp_src=bm_amp_u=http_//www.thephpx.com/2009/07/31/thephpx/_amp_t=thephpx+reloaded_21&amp;referer=');">Share this on Facebook</a>
		</li>
		<li class="shr-gmail">
			<a href="https://mail.google.com/mail/?ui=2&amp;view=cm&amp;fs=1&amp;tf=1&amp;su=thephpx+reloaded%21&amp;body=Link: http://www.thephpx.com/2009/07/31/thephpx/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hello%20everybody%2C%0D%0A%0D%0AI%20am%20back%20at%20blogging.%20This%20is%20just%20the%20starter%20hope%20to%20come-up%20with%20some%20solid%20posts%20ASAP%21%0D%0A%0D%0ASo%2C%20hang-on%20and%20keep%20visiting%20%3A%29%0D%0A%0D%0A-%20thephpx" rel="nofollow" class="external" title="Email this via Gmail" onclick="pageTracker._trackPageview('/outgoing/mail.google.com/mail/?ui=2_amp_view=cm_amp_fs=1_amp_tf=1_amp_su=thephpx+reloaded_21_amp_body=Link_http_//www.thephpx.com/2009/07/31/thephpx/_sent_via_shareaholic_0D_0A_0D_0A----_0D_0A_Hello_20everybody_2C_0D_0A_0D_0AI_20am_20back_20at_20blogging._20This_20is_20just_20the_20starter_20hope_20to_20come-up_20with_20some_20solid_20posts_20ASAP_21_0D_0A_0D_0ASo_2C_20hang-on_20and_20keep_20visiting_20_3A_29_0D_0A_0D_0A-_20thephpx&amp;referer=');">Email this via Gmail</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.thephpx.com/2009/07/31/thephpx/&amp;title=thephpx+reloaded%21" rel="nofollow" class="external" title="Add this to Google Bookmarks" onclick="pageTracker._trackPageview('/outgoing/www.google.com/bookmarks/mark?op=add_amp_bkmk=http_//www.thephpx.com/2009/07/31/thephpx/_amp_title=thephpx+reloaded_21&amp;referer=');">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.thephpx.com/2009/07/31/thephpx/&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz" onclick="pageTracker._trackPageview('/outgoing/www.google.com/buzz/post?url=http_//www.thephpx.com/2009/07/31/thephpx/_amp_imageurl=&amp;referer=');">Post on Google Buzz</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.thephpx.com/2009/07/31/thephpx/&amp;title=thephpx+reloaded%21&amp;summary=Hello%20everybody%2C%0D%0A%0D%0AI%20am%20back%20at%20blogging.%20This%20is%20just%20the%20starter%20hope%20to%20come-up%20with%20some%20solid%20posts%20ASAP%21%0D%0A%0D%0ASo%2C%20hang-on%20and%20keep%20visiting%20%3A%29%0D%0A%0D%0A-%20thephpx&amp;source=thephpx" rel="nofollow" class="external" title="Share this on LinkedIn" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_//www.thephpx.com/2009/07/31/thephpx/_amp_title=thephpx+reloaded_21_amp_summary=Hello_20everybody_2C_0D_0A_0D_0AI_20am_20back_20at_20blogging._20This_20is_20just_20the_20starter_20hope_20to_20come-up_20with_20some_20solid_20posts_20ASAP_21_0D_0A_0D_0ASo_2C_20hang-on_20and_20keep_20visiting_20_3A_29_0D_0A_0D_0A-_20thephpx_amp_source=thephpx&amp;referer=');">Share this on LinkedIn</a>
		</li>
		<li class="shr-myspace">
			<a href="http://www.myspace.com/Modules/PostTo/Pages/?u=http://www.thephpx.com/2009/07/31/thephpx/&amp;t=thephpx+reloaded%21" rel="nofollow" class="external" title="Post this to MySpace" onclick="pageTracker._trackPageview('/outgoing/www.myspace.com/Modules/PostTo/Pages/?u=http_//www.thephpx.com/2009/07/31/thephpx/_amp_t=thephpx+reloaded_21&amp;referer=');">Post this to MySpace</a>
		</li>
		<li class="shr-plaxo">
			<a href="http://www.plaxo.com/?share_link=http://www.thephpx.com/2009/07/31/thephpx/" rel="nofollow" class="external" title="Share this on Plaxo" onclick="pageTracker._trackPageview('/outgoing/www.plaxo.com/?share_link=http_//www.thephpx.com/2009/07/31/thephpx/&amp;referer=');">Share this on Plaxo</a>
		</li>
		<li class="shr-squidoo">
			<a href="http://www.squidoo.com/lensmaster/bookmark?http://www.thephpx.com/2009/07/31/thephpx/" rel="nofollow" class="external" title="Add to a lense on Squidoo" onclick="pageTracker._trackPageview('/outgoing/www.squidoo.com/lensmaster/bookmark?http_//www.thephpx.com/2009/07/31/thephpx/&amp;referer=');">Add to a lense on Squidoo</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.thephpx.com/2009/07/31/thephpx/&amp;title=thephpx+reloaded%21" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_//www.thephpx.com/2009/07/31/thephpx/_amp_title=thephpx+reloaded_21&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.thephpx.com/2009/07/31/thephpx/" rel="nofollow" class="external" title="Share this on Technorati" onclick="pageTracker._trackPageview('/outgoing/technorati.com/faves?add=http_//www.thephpx.com/2009/07/31/thephpx/&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="shr-tumblr">
			<a href="http://www.tumblr.com/share?v=3&amp;u=http%3A%2F%2Fwww.thephpx.com%2F2009%2F07%2F31%2Fthephpx%2F&amp;t=thephpx+reloaded%21" rel="nofollow" class="external" title="Share this on Tumblr" onclick="pageTracker._trackPageview('/outgoing/www.tumblr.com/share?v=3_amp_u=http_3A_2F_2Fwww.thephpx.com_2F2009_2F07_2F31_2Fthephpx_2F_amp_t=thephpx+reloaded_21&amp;referer=');">Share this on Tumblr</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=thephpx+reloaded%21+-+http://b2l.me/ac4ejc&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=thephpx+reloaded_21+-+http_//b2l.me/ac4ejc_amp_source=shareaholic&amp;referer=');">Tweet This!</a>
		</li>
		<li class="shr-yahoomail">
			<a href="http://compose.mail.yahoo.com/?Subject=thephpx+reloaded%21&amp;body=Link: http://www.thephpx.com/2009/07/31/thephpx/ (sent via shareaholic)%0D%0A%0D%0A----%0D%0A Hello%20everybody%2C%0D%0A%0D%0AI%20am%20back%20at%20blogging.%20This%20is%20just%20the%20starter%20hope%20to%20come-up%20with%20some%20solid%20posts%20ASAP%21%0D%0A%0D%0ASo%2C%20hang-on%20and%20keep%20visiting%20%3A%29%0D%0A%0D%0A-%20thephpx" rel="nofollow" class="external" title="Email this via Yahoo! Mail" onclick="pageTracker._trackPageview('/outgoing/compose.mail.yahoo.com/?Subject=thephpx+reloaded_21_amp_body=Link_http_//www.thephpx.com/2009/07/31/thephpx/_sent_via_shareaholic_0D_0A_0D_0A----_0D_0A_Hello_20everybody_2C_0D_0A_0D_0AI_20am_20back_20at_20blogging._20This_20is_20just_20the_20starter_20hope_20to_20come-up_20with_20some_20solid_20posts_20ASAP_21_0D_0A_0D_0ASo_2C_20hang-on_20and_20keep_20visiting_20_3A_29_0D_0A_0D_0A-_20thephpx&amp;referer=');">Email this via Yahoo! Mail</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save" onclick="pageTracker._trackPageview('/outgoing/www.addtoany.com/share_save?referer=');"><img src="http://www.thephpx.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share/Bookmark"/></a> </p>]]></content:encoded>
			<wfw:commentRss>http://www.thephpx.com/2009/07/31/thephpx/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
