<?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>blogfreakz.com &#187; php</title>
	<atom:link href="http://blogfreakz.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://blogfreakz.com</link>
	<description>Web Development, Web Trends, open source resources</description>
	<lastBuildDate>Fri, 10 Feb 2012 05:40:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.4</generator>
		<item>
		<title>Build A WordPress Network Navigation Menu</title>
		<link>http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/</link>
		<comments>http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 08:39:10 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Menu & navigation]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[network navigation]]></category>
		<category><![CDATA[WordPress Hack]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=24902</guid>
		<description><![CDATA[WordPress 3.0 has allowed users to host multiple independent websites with just one feature called Multisite. It also lets you share settings, content, and code between websites within your network. Kevin Leary has shared some of the hacks he did to perform the aforementioned abilities in one of his articles; one of them involves building [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress 3.0 has allowed users to host multiple independent websites with just one feature called Multisite. It also lets you share settings, content, and code between websites within your network.</p>
<p><a href="http://www.kevinleary.net/"><strong>Kevin Leary</strong></a> has shared some of the hacks he did to perform the aforementioned abilities in one of his articles; one of them involves building a network navigation menu. Below is a snippet of the code:</p>
<p>Simply paste this in your theme’s functions.php file.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">/**</span>&nbsp;</p>
<p><span style="color: #003366;">* Build a list of all websites   in a network</span></p>
<p><span style="color: #003366;">*/</span></p>
<p><span style="color: #003366;">function wp_list_sites( $expires = 7200 ) {</span></p>
<p><span style="color: #003366;">if( !is_multisite() ) return   false;</span></p>
<p><span style="color: #003366;">// Because the   get_blog_list() function is currently flagged as deprecated</span></p>
<p><span style="color: #003366;">// due to the potential for   high consumption of resources, we&#8217;ll use</span></p>
<p><span style="color: #003366;">// $wpdb to roll out our own   SQL query instead. Because the query can be</span></p>
<p><span style="color: #003366;">// memory-intensive, we&#8217;ll   store the results using the Transients API</span></p>
<p><span style="color: #003366;">if ( false === ( $site_list   = get_transient( &#8216;multisite_site_list&#8217; ) ) ) {</span></p>
<p><span style="color: #003366;">global $wpdb;</span></p>
<p><span style="color: #003366;">$site_list =   $wpdb-&gt;get_results( $wpdb-&gt;prepare(&#8216;SELECT * FROM wp_blogs ORDER BY   blog_id&#8217;) );</span></p>
<p><span style="color: #003366;">// Set the Transient   cache to expire every two hours</span></p>
<p><span style="color: #003366;">set_site_transient(   &#8216;multisite_site_list&#8217;, $site_list, $expires );</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">$current_site_url = get_site_url(   get_current_blog_id() );</span></p>
<p><span style="color: #003366;">$html = &#8216;</span></p>
<p><span style="color: #003366;">&lt;ul id=&#8221;network-menu&#8221;&gt;&#8217; . &#8220;\n&#8221;;</span></p>
<p><span style="color: #003366;">foreach ( $site_list as   $site ) {</span></p>
<p><span style="color: #003366;">switch_to_blog(   $site-&gt;blog_id );</span></p>
<p><span style="color: #003366;">$class = ( home_url() ==   $current_site_url ) ? &#8221; : &#8221;;</span></p>
<p><span style="color: #003366;">$html .= &#8220;\t&#8221; .   &#8216;</span></p>
<p><span style="color: #003366;">&lt;li id=&#8221;site-&#8217; . $site-&gt;blog_id . &#8216;&#8221; &#8216;=&#8221;"   .=&#8221;" $class=&#8221;"&gt;&lt;a href=&#8221;&#8216; . home_url() .   &#8216;&#8221;&gt;&#8217; . get_bloginfo(&#8216;name&#8217;) . &#8216;&lt;/a&gt;&lt;/li&gt;</span></p>
<p><span style="color: #003366;">&#8216; . &#8220;\n&#8221;;</span></p>
<p><span style="color: #003366;">restore_current_blog();</span></p>
<p><span style="color: #003366;">}</span></p>
<p><span style="color: #003366;">$html .= &#8216;&lt;/ul&gt;</span></p>
<p><span style="color: #003366;">&lt;!&#8211;// end #network-menu &#8211;&gt;&#8217; . &#8220;\n\n&#8221;;</span></p>
<p><span style="color: #003366;">return $html;</span></p>
<p><span style="color: #003366;">}</span></td>
</tr>
</tbody>
</table>
<p>You can use it in your theme by calling its <strong>wp_list_sites()</strong> function.</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td width="638" valign="top"><span style="color: #003366;">&lt;?php</span>&nbsp;</p>
<p><span style="color: #003366;">// Multisite Network Menu</span></p>
<p><span style="color: #003366;">$network_menu = wp_list_sites();</span></p>
<p><span style="color: #003366;">if( $network_menu ):</span></p>
<p><span style="color: #003366;">?&gt;</span></p>
<p><span style="color: #003366;">&lt;div id=&#8221;network-menu&#8221;&gt;</span></p>
<p><span style="color: #003366;">&lt;?php echo $network_menu;   ?&gt;</span></p>
<p><span style="color: #003366;">&lt;/div&gt;</span></p>
<p><span style="color: #003366;">&lt;!&#8211;// end #network-menu &#8211;&gt;</span></p>
<p><span style="color: #003366;">&lt;?php endif; ?&gt;</span></td>
</tr>
</tbody>
</table>
<p>Cool, huh? Find out more about the rest of his WordPress hacks <a href="http://wp.smashingmagazine.com/2011/11/17/wordpress-multisite-practical-functions-methods/"><strong>here</strong></a>!<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/" title="network menu in wordpress">network menu in wordpress</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/wordpress-tutorial/build-a-wordpress-network-navigation-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>7 jQuery Plugins To Jazz Up Your Website</title>
		<link>http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/</link>
		<comments>http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 10:47:33 +0000</pubDate>
		<dc:creator>Keith@Blogfreakz</dc:creator>
				<category><![CDATA[Ajax]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Freebies]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[freebies]]></category>
		<category><![CDATA[plugins]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=23950</guid>
		<description><![CDATA[The following jQuery plugins are great for for event management, animation and Ajax interactions, and will certainly turn your website into eye-candy for your visitors! Ninja UI – This plugin is one big pack of web interface:  it has buttons, icons, tooltips, sliders, and more!  Its design gets plenty of rave reviews for being beautiful, [...]]]></description>
			<content:encoded><![CDATA[<p><a href='http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/attachment/jquerylogo256/' title='jquerylogo256'><img width="200" height="200" src="http://blogfreakz.com/wp-content/uploads/2011/12/jquerylogo256-200x200.jpg" class="attachment-thumbnail" alt="jquerylogo256 200x200 7 jQuery Plugins To Jazz Up Your Website" title="jquerylogo256" /></a><br />
<a href='http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/attachment/blueberry_fruits-545711/' title='blueberry_fruits-545711'><img width="200" height="200" src="http://blogfreakz.com/wp-content/uploads/2011/12/blueberry_fruits-545711-200x200.jpg" class="attachment-thumbnail" alt="blueberry fruits 545711 200x200 7 jQuery Plugins To Jazz Up Your Website" title="blueberry_fruits-545711" /></a><br />
<a href='http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/attachment/2-16/' title='2'><img width="200" height="200" src="http://blogfreakz.com/wp-content/uploads/2011/12/211-200x200.jpg" class="attachment-thumbnail" alt="211 200x200 7 jQuery Plugins To Jazz Up Your Website" title="2" /></a><br />
The following jQuery plugins are great for for event management, animation and Ajax interactions, and will certainly turn your website into eye-candy for your visitors!</p>
<ol>
<li><a href="http://ninjaui.com/"><strong>Ninja UI</strong></a> – This plugin is one big pack of web interface:  it has buttons, icons, tooltips, sliders, and more!  Its design gets plenty of rave reviews for being beautiful, efficient and unobtrusive.</li>
<p>&nbsp;</p>
<li><a href="http://mobiscroll.com/"><strong>Mobiscroll</strong></a> – This one is optimized for touchscreen devices. Although it&#8217;s mainly used for scheduling tasks, dates, and appointments, it can also be used for other values such as images. It also works well as a dropdown list alternative. Check out its<a href="http://demo.mobiscroll.com/"> demo.</a></li>
<p>&nbsp;</p>
<li><a href="http://elycharts.com/"><strong>Elycharts</strong></a> &#8211; A pure Javascript charting library, this one is easy to use and completely customizable. With this you can create interactive charts with key features such as legend and label support, mouse tracking, tooltips, and animation. It doesn’t require any client side plugins like Flash or Java, and runs on the client browsers so installation isn&#8217;t necessary. View the <a href="http://elycharts.com/examples"> demo</a> here.</li>
<p>&nbsp;</p>
<li><a href="http://www.csslab.cl/2011/08/18/jquery-timelinr/"><strong>Timelinr</strong></a> &#8211; Thanks to its customizable layouts, speed, and transparency, you can say goodbye to boring old timelines. Check out its <a href="http://www.csslab.cl/ejemplos/timelinr/latest/horizontal.html"> demo</a>.</li>
<p>&nbsp;</p>
<li><a href="http://larsjung.de/fracs/"><strong>jQuery.fracs</strong></a> – This impressive plugin helps determine the visible fractions of an element that is currently in the viewport. It allows users to easily skip through different sections of a website, making it ideal for one-page websites. Get a load of the <a href="http://larsjung.de/fracs/demo/"> demo</a>.</li>
<p>&nbsp;</p>
<li><a href="http://www.pikachoose.com"/><strong>PikaChoose</strong></a> – This extremely lightweight jQuery slideshow plugin integrates smoothly with jCarousel and has API hooks for lightbox and Fancybox integration too.</li>
<p>&nbsp;</p>
<li><a href="http://marktyrrell.com/labs/blueberry/"><strong>Blueberry</strong></a> &#8211;  This image slider plugin was written specifically to work with responsive web layouts. Enjoy its responsiveness <a href="http://marktyrrell.com/labs/blueberry/">here</a>.</li>
</ol>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="jquery">jquery</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="fancybox touch screen overflow">fancybox touch screen overflow</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="jquery plug-ins">jquery plug-ins</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="jquery jazzy layout">jquery jazzy layout</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="jquery html5 graph plugin -jqchart">jquery html5 graph plugin -jqchart</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="jquery plugin photo">jquery plugin photo</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="jquery eye-catching">jquery eye-catching</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="jquery eye catching">jquery eye catching</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="jquery detect flash plugin">jquery detect flash plugin</a></li>
<li><a href="http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/" title="7 jquery keith">7 jquery keith</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/jquery/7-jquery-plugins-to-jazz-up-your-website/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>jQuery Modal Window</title>
		<link>http://blogfreakz.com/web-design/jquery-modal-window/</link>
		<comments>http://blogfreakz.com/web-design/jquery-modal-window/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 06:03:43 +0000</pubDate>
		<dc:creator>Marvin@Blogfreakz</dc:creator>
				<category><![CDATA[Freebies]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[JQuery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[modal popup window]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=23922</guid>
		<description><![CDATA[If you want to develop user-friendly apps and plugins for your WordPress blog website, you need to use jQuery. To date it is one of the best scripts that so many web designers and web developers swear by. Below is a simple tutorial by Queness.com that might be very useful in your site promotion. This [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to develop user-friendly apps and plugins for your WordPress blog website, you need to use jQuery. To date it is one of the best scripts that so many web designers and web developers swear by.</p>
<p>Below is a simple tutorial by<a title="Queness" href="http://www.queness.com/" target="_blank"> Queness.com</a> that might be very useful in your site promotion. This will let you show a modal window and display content of DIV #ID. <span style="color: #000000;"><strong> </strong></span></p>
<p><span style="color: #000000;"><strong>HTML code and A tag attributes</strong></span></p>
<ol></ol>
<p><span style="color: #000080;">&lt;!&#8211; #dialog is the id of a DIV defined in the code below &#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;a href=&#8221;#dialog&#8221; name=&#8221;modal&#8221;&gt;Simple Modal Window&lt;/a&gt;</span></p>
<p><span style="color: #000080;">&lt;div id=&#8221;boxes&#8221;&gt;</span></p>
<p><span style="color: #000080;">&lt;!&#8211; #customize your modal window here &#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;div id=&#8221;dialog&#8221;&gt;</span></p>
<p><span style="color: #000080;">&lt;b&gt;Testing of Modal Window&lt;/b&gt; |</span></p>
<p><span style="color: #000080;">&lt;!&#8211; close button is defined as close class &#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;a href=&#8221;#&#8221;&gt;Close it&lt;/a&gt;</span></p>
<p><span style="color: #000080;">&lt;/div&gt;</span></p>
<p><span style="color: #000080;">&lt;!&#8211; Do not remove div#mask, because you&#8217;ll need it to fill the whole screen &#8211;&gt;</span></p>
<p><span style="color: #000080;">&lt;div id=&#8221;mask&#8221;&gt;&lt;/div&gt;</span></p>
<p><span style="color: #000080;">&lt;/div&gt;</span></p>
<p>&nbsp;</p>
<p><span style="color: #000000;"><strong>CSS code</strong></span></p>
<ol></ol>
<p><span style="color: #000080;">&lt;style&gt;</span></p>
<p><span style="color: #000080;">/* Z-index of #mask must lower than #boxes .window */</span></p>
<p><span style="color: #000080;">#mask {</span></p>
<p><span style="color: #000080;">position:absolute;</span></p>
<p><span style="color: #000080;">z-index:9000;</span></p>
<p><span style="color: #000080;">background-color:#000;</span></p>
<p><span style="color: #000080;">display:none;</span></p>
<p><span style="color: #000080;">}</span></p>
<p><span style="color: #000080;">#boxes .window {</span></p>
<p><span style="color: #000080;">position:absolute;</span></p>
<p><span style="color: #000080;">width:440px;</span></p>
<p><span style="color: #000080;">height:200px;</span></p>
<p><span style="color: #000080;">display:none;</span></p>
<p><span style="color: #000080;">z-index:9999;</span></p>
<p><span style="color: #000080;">padding:20px;</span></p>
<p><span style="color: #000080;">}</span></p>
<p><span style="color: #000080;">/* Customize your modal window here, you can add background image too */</span></p>
<p><span style="color: #000080;">#boxes #dialog {</span></p>
<p><span style="color: #000080;">width:375px;</span></p>
<p><span style="color: #000080;">height:203px;</span></p>
<p><span style="color: #000080;">}</span></p>
<p><span style="color: #000080;">&lt;/style&gt;</span></p>
<p>&nbsp;</p>
<p><span style="color: #000000;"><strong>Javascript</strong></span></p>
<ol></ol>
<p><span style="color: #000080;">&lt;script&gt;</span></p>
<p><span style="color: #000080;">$(document).ready(function() {</span></p>
<p><span style="color: #000080;">//select all the a tag with name equal to modal</span></p>
<p><span style="color: #000080;">$(&#8216;a[name=modal]&#8216;).click(function(e) {</span></p>
<p><span style="color: #000080;">//Cancel the link behavior</span></p>
<p><span style="color: #000080;">e.preventDefault();</span></p>
<p><span style="color: #000080;">//Get the A tag</span></p>
<p><span style="color: #000080;">var id = $(this).attr(&#8216;href&#8217;);</span></p>
<p><span style="color: #000080;">//Get the screen height and width</span></p>
<p><span style="color: #000080;">var maskHeight = $(document).height();</span></p>
<p><span style="color: #000080;">var maskWidth = $(window).width();</span></p>
<p><span style="color: #000080;">//Set height and width to mask to fill up the whole screen</span></p>
<p><span style="color: #000080;">$(&#8216;#mask&#8217;).css({&#8216;width&#8217;:maskWidth,&#8217;height&#8217;:maskHeight});</span></p>
<p><span style="color: #000080;">//transition effect</span></p>
<p><span style="color: #000080;">$(&#8216;#mask&#8217;).fadeIn(1000);</span></p>
<p><span style="color: #000080;">$(&#8216;#mask&#8217;).fadeTo(&#8220;slow&#8221;,0.8);</span></p>
<p><span style="color: #000080;">//Get the window height and width</span></p>
<p><span style="color: #000080;">var winH = $(window).height();</span></p>
<p><span style="color: #000080;">var winW = $(window).width();</span></p>
<p><span style="color: #000080;">//Set the popup window to center</span></p>
<p><span style="color: #000080;">$(id).css(&#8216;top&#8217;,  winH/2-$(id).height()/2);</span></p>
<p><span style="color: #000080;">$(id).css(&#8216;left&#8217;, winW/2-$(id).width()/2);</span></p>
<p><span style="color: #000080;">//transition effect</span></p>
<p><span style="color: #000080;">$(id).fadeIn(2000);</span></p>
<p><span style="color: #000080;">});</span></p>
<p><span style="color: #000080;">//if close button is clicked</span></p>
<p><span style="color: #000080;">$(&#8216;.window .close&#8217;).click(function (e) {</span></p>
<p><span style="color: #000080;">//Cancel the link behavior</span></p>
<p><span style="color: #000080;">e.preventDefault();</span></p>
<p><span style="color: #000080;">$(&#8216;#mask, .window&#8217;).hide();</span></p>
<p><span style="color: #000080;">});</span></p>
<p><span style="color: #000080;">//if mask is clicked</span></p>
<p><span style="color: #000080;">$(&#8216;#mask&#8217;).click(function () {</span></p>
<p><span style="color: #000080;">$(this).hide();</span></p>
<p><span style="color: #000080;">$(&#8216;.window&#8217;).hide();</span></p>
<p><span style="color: #000080;">});</span></p>
<p><span style="color: #000080;">});</span></p>
<p><span style="color: #000080;">&lt;/script&gt;</span></p>
<p><span style="color: #000080;"><br />
</span></p>
<p><span style="color: #000080;"><strong></strong></span> <span style="color: #000000;"><strong>Launching the modal window with JS</strong></span></p>
<ol></ol>
<p><span style="color: #000080;">$(document).ready(function () {</span></p>
<p><span style="color: #000080;">//id is the ID for the DIV you want to display it as modal window</span></p>
<p><span style="color: #000080;">launchWindow(id);</span></p>
<p><span style="color: #000080;">});</span></p>
<ul>
<li><span style="color: #000000;">If you want to close the modal window by pressing any key, you can add these functions:</span></li>
</ul>
<table border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td></td>
</tr>
</tbody>
</table>
<p><span style="color: #000080;">$(document).keyup(function(e) {</span></p>
<p><span style="color: #000080;">if(e.keyCode == 13) {</span></p>
<p><span style="color: #000080;">$(&#8216;#mask&#8217;).hide();</span></p>
<p><span style="color: #000080;">$(&#8216;.window&#8217;).hide();</span></p>
<p><span style="color: #000080;">}</span></p>
<p><span style="color: #000080;">});</span></p>
<p>This simple tutorial can  make a big difference in your website, and you can also customize this according to the web developer and display it in your image gallery and in iFrame.</p>
<p>Check the demo of this tutorial<a title="Modal Window Demo" href="http://www.queness.com/resources/html/modal/jquery-modal-window.html" target="_blank"> HERE.</a><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/web-design/jquery-modal-window/" title="jquery modal">jquery modal</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-modal-window/" title="jquery modal window">jquery modal window</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-modal-window/" title="jquery window">jquery window</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-modal-window/" title="html5 modalwindow">html5 modalwindow</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-modal-window/" title="jquery modal dialog">jquery modal dialog</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-modal-window/" title="wordpress modal dialog">wordpress modal dialog</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-modal-window/" title="modal box in jquery forcetree com">modal box in jquery forcetree com</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-modal-window/" title="light jquery modal dialog">light jquery modal dialog</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-modal-window/" title="jquery ui modal zindex">jquery ui modal zindex</a></li>
<li><a href="http://blogfreakz.com/web-design/jquery-modal-window/" title="jquery simple jquery modal iframe jquery modal">jquery simple jquery modal iframe jquery modal</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/web-design/jquery-modal-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to autoupdate copyright year</title>
		<link>http://blogfreakz.com/others/how-to-autoupdate-copyright-year/</link>
		<comments>http://blogfreakz.com/others/how-to-autoupdate-copyright-year/#comments</comments>
		<pubDate>Thu, 29 Sep 2011 20:44:11 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=22315</guid>
		<description><![CDATA[Sometimes when I go blog hopping I&#8217;ll notice some sites have a copyright signature. This is a great idea to protect your data, however, when I see them with the wrong year, I think it looks so outdated. (Especially when it&#8217;s static, and also on the front page- Yikes!) To avoid this, it&#8217;s better to [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes when I go blog hopping I&#8217;ll notice some sites have a copyright signature. This is a great idea to protect your data, however, when I see them with the wrong year, I think it looks so outdated. (Especially when it&#8217;s static, and also on the front page- Yikes!)</p>
<p>To avoid this, it&#8217;s better to use a script that will display the year based on the first post and last post year. This way, you will have to never worried about updating the year.</p>
<p>First, please open our beloved functions.php under themes folder, and put this code below in the bottom:<br />
<a rel="attachment wp-att-22319" href="http://blogfreakz.com/others/how-to-autoupdate-copyright-year/attachment/blogfreakz-pic-2/"><img class="aligncenter size-full wp-image-22319" title="blogfreakz pic" src="http://blogfreakz.com/wp-content/uploads/2011/09/blogfreakz-pic1.png" alt="blogfreakz pic1 How to autoupdate copyright year" width="437" height="474" /></a></p>
<p>You can modify this section if you want to put in another word before the text:<br />
$copyright = &#8220;&amp; my footer copyright &#8211;  &#8220;</p>
<p>To use this function, you can put this function anywhere you want to use this tag:</p>
<p><!--?php echo my_copyright(); ?--></p>
<p>In my wordpress blog, I want to put this in my footer, so I edit my footer php as follows:<br />
<a rel="attachment wp-att-22322" href="http://blogfreakz.com/others/how-to-autoupdate-copyright-year/attachment/blogfreakz-pic-2-2/"><img class="aligncenter size-full wp-image-22322" title="blogfreakz pic 2" src="http://blogfreakz.com/wp-content/uploads/2011/09/blogfreakz-pic-2.png" alt="blogfreakz pic 2 How to autoupdate copyright year" width="643" height="363" /></a>This results in:</p>
<p><a rel="attachment wp-att-22343" href="http://blogfreakz.com/others/how-to-autoupdate-copyright-year/attachment/blogfreakz-pic-3/"><img class="aligncenter size-full wp-image-22343" title="blogfreakz pic 3" src="http://blogfreakz.com/wp-content/uploads/2011/09/blogfreakz-pic-3.png" alt="blogfreakz pic 3 How to autoupdate copyright year" width="629" height="165" /></a><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/others/how-to-autoupdate-copyright-year/" title="how to put copyright">how to put copyright</a></li>
<li><a href="http://blogfreakz.com/others/how-to-autoupdate-copyright-year/" title="auto update year in a flash website">auto update year in a flash website</a></li>
<li><a href="http://blogfreakz.com/others/how-to-autoupdate-copyright-year/" title="commentluv logo design">commentluv logo design</a></li>
<li><a href="http://blogfreakz.com/others/how-to-autoupdate-copyright-year/" title="copyright year auto update">copyright year auto update</a></li>
<li><a href="http://blogfreakz.com/others/how-to-autoupdate-copyright-year/" title="flash copyright auto update year">flash copyright auto update year</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/others/how-to-autoupdate-copyright-year/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>How to disable Spammer URLs in comments section.</title>
		<link>http://blogfreakz.com/others/how-to-disable-spammer-urls-in-comments-section/</link>
		<comments>http://blogfreakz.com/others/how-to-disable-spammer-urls-in-comments-section/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 00:00:26 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[comments]]></category>
		<category><![CDATA[disable]]></category>
		<category><![CDATA[spammer]]></category>
		<category><![CDATA[url links]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=21914</guid>
		<description><![CDATA[By default all links posted in the comments under your articles are turned by WordPress into links. Unfortunately, this features encourages  spammers to post many unwanted comments. Some links while pesky,  can range from just pedaling some new service or produce, while others can even be malicious links that could damage your computer, or spread [...]]]></description>
			<content:encoded><![CDATA[<p>By default all links posted in the comments under your articles are turned by WordPress into links. Unfortunately, this features encourages  spammers to post many unwanted comments. Some links while pesky,  can range from just pedaling some new service or produce, while others can even be malicious links that could damage your computer, or spread a virus!</p>
<p>To disable turning  URLs from comments into actual links, go to your admin area and then navigate to Appearance -&gt; Editor.</p>
<p>Select the functions.php file from the right column and add the following line just above the closing php tag ( ?&gt; ):</p>
<p>remove_filter(&#8216;comment_text&#8217;, &#8216;make_clickable&#8217;, 9);</p>
<p style="text-align: center;"><a rel="attachment wp-att-22033" href="http://blogfreakz.com/others/how-to-disable-spammer-urls-in-comments-section/attachment/appearance-editor-1/"><img class="aligncenter size-full wp-image-22033" src="http://blogfreakz.com/wp-content/uploads/2011/09/Appearance-Editor-1.jpg" alt="Appearance Editor 1 How to disable Spammer URLs in comments section. " width="1127" height="542" title="How to disable Spammer URLs in comments section. " /></a></p>
<p>URLs pasted in your comments will not be turned into actual links anymore</p>
<p>This below picture is showing that visitors is able to click the URL, since spammers like to provide their links for their personal gain, so we can avoid it by above workaround.</p>
<p style="text-align: center;"><a rel="attachment wp-att-22036" href="http://blogfreakz.com/others/how-to-disable-spammer-urls-in-comments-section/attachment/url-as-link/"><img class="aligncenter size-full wp-image-22036" src="http://blogfreakz.com/wp-content/uploads/2011/09/URL-as-link.png" alt="URL as link How to disable Spammer URLs in comments section. " width="777" height="507" title="How to disable Spammer URLs in comments section. " /></a></p>
<p>By editing the functions.php, the link is not able to be clicked by visitors, below is the screen shot for more clarification.</p>
<p style="text-align: center;"><a rel="attachment wp-att-22037" href="http://blogfreakz.com/others/how-to-disable-spammer-urls-in-comments-section/attachment/url-non-link/"><img class="aligncenter size-full wp-image-22037" src="http://blogfreakz.com/wp-content/uploads/2011/09/url-non-link.png" alt="url non link How to disable Spammer URLs in comments section. " width="714" height="457" title="How to disable Spammer URLs in comments section. " /></a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/others/how-to-disable-spammer-urls-in-comments-section/" title="wordpress orevent url in comment_text">wordpress orevent url in comment_text</a></li>
<li><a href="http://blogfreakz.com/others/how-to-disable-spammer-urls-in-comments-section/" title="jcollapsible">jcollapsible</a></li>
<li><a href="http://blogfreakz.com/others/how-to-disable-spammer-urls-in-comments-section/" title="spammer urls">spammer urls</a></li>
<li><a href="http://blogfreakz.com/others/how-to-disable-spammer-urls-in-comments-section/" title="spammers in comment section">spammers in comment section</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/others/how-to-disable-spammer-urls-in-comments-section/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to &#8216;Hide&#8217; sections of your blog to non login readers</title>
		<link>http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/</link>
		<comments>http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/#comments</comments>
		<pubDate>Mon, 12 Sep 2011 22:50:12 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Others]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Software & Tools]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[function.php]]></category>
		<category><![CDATA[hide]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=21856</guid>
		<description><![CDATA[How To:  Restrict sections of your blog to non login readers. Sometimes, there are portions of site that may not suitable for the random public. Now, there’s a cool trick to hide part of your article but still can be seen by a member who is &#8220;logged-in&#8221;! Don’t be confused though; this trick does not [...]]]></description>
			<content:encoded><![CDATA[<p>How To:  Restrict sections of your blog to non login readers.</p>
<p>Sometimes, there are portions of site that may not suitable for the random public.<br />
Now, there’s a cool trick to hide part of your article but still can be seen by a member who is &#8220;logged-in&#8221;! Don’t be confused though; this trick does not hide the whole article but only portions that you want.</p>
<p>Changing the WordPress core files can be a real hassle, and really should be left alone to a expert user. So we should avoid that nightmare, and take advantage of function.php instead.</p>
<p>Functions.php is a useful thing from WordPress template file. This file can be used as a way to add<br />
your own functions to WordPress themes just like a plugin to your theme. If you don&#8217;t find function.php in your theme folder, you can just create it from a blank file.</p>
<p>below is the script you can add to your function.php</p>
<p><a rel="attachment wp-att-21857" href="http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/attachment/code/"><img class="aligncenter size-full wp-image-21857" src="http://blogfreakz.com/wp-content/uploads/2011/09/code.png" alt="code How to Hide sections of your blog to non login readers" width="554" height="627" title="How to Hide sections of your blog to non login readers" /></a></p>
<p>After that, enter the following tag code [hide] to the section that you want to hide.</p>
<p>Examples like this: [hide] section or paragraph you want to hide [/ hide]</p>
<p><a rel="attachment wp-att-22021" href="http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/attachment/hide1/"><img class="aligncenter size-full wp-image-22021" src="http://blogfreakz.com/wp-content/uploads/2011/09/hide1.jpg" alt="hide1 How to Hide sections of your blog to non login readers" width="804" height="460" title="How to Hide sections of your blog to non login readers" /></a><br />
Anything inside [hide] and [/hide] will not visible to public, so you can safely hide any sensitive content from public.</p>
<p>What the reader that is &#8216;logged in&#8217; will see&#8230;</p>
<p><a rel="attachment wp-att-22022" href="http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/attachment/logged-in/"><img class="aligncenter size-full wp-image-22022" src="http://blogfreakz.com/wp-content/uploads/2011/09/logged-in.jpg" alt="logged in How to Hide sections of your blog to non login readers" width="878" height="664" title="How to Hide sections of your blog to non login readers" /></a></p>
<p>And what a reader that is logged out will see&#8230;</p>
<p><a rel="attachment wp-att-22023" href="http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/attachment/logout/"><img class="aligncenter size-full wp-image-22023" src="http://blogfreakz.com/wp-content/uploads/2011/09/logout.jpg" alt="logout How to Hide sections of your blog to non login readers" width="768" height="494" title="How to Hide sections of your blog to non login readers" /></a></p>
<p>And if you don&#8217;t want to hide a fraction of your content but rather the entire article or blog, WordPress has a nice and simple plugin for this!</p>
<p><a href="http://wordpress.org/extend/plugins/force-user-login/" target="_blank">http://wordpress.org/extend/plugins/force-user-login/</a></p>
<p>This plugin forces users to login before viewing any content. The installation is very easy and doesn&#8217;t need any detail configuration.<br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/" title="wp hide content for logged out users">wp hide content for logged out users</a></li>
<li><a href="http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/" title="wordpress plugin hide content non login user">wordpress plugin hide content non login user</a></li>
<li><a href="http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/" title="wordpress hide sections from non users">wordpress hide sections from non users</a></li>
<li><a href="http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/" title="to hide">to hide</a></li>
<li><a href="http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/" title="hide wordpress login#">hide wordpress login#</a></li>
<li><a href="http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/" title="hide twitter from non users">hide twitter from non users</a></li>
<li><a href="http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/" title="hide to non login users wp">hide to non login users wp</a></li>
<li><a href="http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/" title="hide section for registered user wp">hide section for registered user wp</a></li>
<li><a href="http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/" title="hide section blogger">hide section blogger</a></li>
<li><a href="http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/" title="hide non member login php file on wordpress">hide non member login php file on wordpress</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/others/how-to-hide-sections-of-your-blog-to-non-login-readers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Display your yahoo messenger online status on your blog</title>
		<link>http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/</link>
		<comments>http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/#comments</comments>
		<pubDate>Tue, 06 Sep 2011 21:52:30 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[online status]]></category>
		<category><![CDATA[yahoo messenger]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=21916</guid>
		<description><![CDATA[How to Display your Yahoo Messenger Online status on your Blog Ever visited a blog, and wish you can IM that blogger right away to ask a quick question? Well&#8230; now you can! This little widget allows you to alert your readers when you are signed on, and ready for quicky conversations on Yahoo Messengner. [...]]]></description>
			<content:encoded><![CDATA[<p>How to Display your Yahoo Messenger Online status on your Blog</p>
<p>Ever visited a blog, and wish you can IM that blogger right away to ask a quick question? Well&#8230; now you can!</p>
<p>This little widget allows you to alert your readers when you are signed on, and ready for quicky conversations on Yahoo Messengner. This is just another great way for you to keep in touch with your readers!</p>
<p>By signing into your yahoo messenger application, it will automatically show your Yahoo Online status in your blog.</p>
<p>Below is the tutuorial how to set this up:</p>
<p>1. Login into your blog dashboard and add Gadget / Wideget HTML / Javascript.</p>
<p>2. Copy and Paste this code below:</p>
<p><a rel="attachment wp-att-21936" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-code/"><img class="aligncenter size-full wp-image-21936" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-code.png" alt="yahoo code How to Display your yahoo messenger online status on your blog" width="411" height="197" title="How to Display your yahoo messenger online status on your blog" /></a></p>
<p>3. Change  &#8220;your-yahoo-id&#8221; to your Yahoo Messenger UserID</p>
<p>4. Save your Gadget</p>
<p>5. You also can customize the Yahoo Messenger Status Icon in your blog, by simply changing number in t=1  to the number that you want.<strong> </strong></p>
<p><strong>Note</strong>: t number range 1 to 24</p>
<p><strong>Below is the Yahoo Messenger Status Icon broken down in sets of 5<br />
</strong></p>
<p><strong>Code t=1 thru t=5                                                                      Code t=6 thru t=10<br />
</strong></p>
<p><strong><a rel="attachment wp-att-21919" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-1-5/"><img class="alignleft size-full wp-image-21919" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-1-5.png" alt="yahoo 1 5 How to Display your yahoo messenger online status on your blog" width="182" height="227" title="How to Display your yahoo messenger online status on your blog" /></a><a rel="attachment wp-att-21920" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-6-10/"><img class="aligncenter size-full wp-image-21920" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-6-10.png" alt="yahoo 6 10 How to Display your yahoo messenger online status on your blog" width="196" height="488" title="How to Display your yahoo messenger online status on your blog" /></a></strong></p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left"><strong>Code t=11 thru t=15                                                                  Code t=16 thru t=20</strong></p>
<p style="text-align: center"><strong><a rel="attachment wp-att-21921" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-11-15/"><img class="alignleft size-full wp-image-21921" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-11-15.png" alt="yahoo 11 15 How to Display your yahoo messenger online status on your blog" width="197" height="612" title="How to Display your yahoo messenger online status on your blog" /></a></strong><a rel="attachment wp-att-21923" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-21-24/"><strong> </strong></a><strong><a rel="attachment wp-att-21922" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-16-20/"><img class="aligncenter size-full wp-image-21922" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-16-20.png" alt="yahoo 16 20 How to Display your yahoo messenger online status on your blog" width="203" height="631" title="How to Display your yahoo messenger online status on your blog" /></a><br />
</strong><br />
<strong>Code t=21 thru t=24</strong></p>
<p style="text-align: center"><a rel="attachment wp-att-21923" href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/attachment/yahoo-21-24/"><img class="aligncenter size-full wp-image-21923" src="http://blogfreakz.com/wp-content/uploads/2011/09/yahoo-21-24.png" alt="yahoo 21 24 How to Display your yahoo messenger online status on your blog" width="206" height="513" title="How to Display your yahoo messenger online status on your blog" /></a></p>
<p style="text-align: left">&nbsp;</p>
<p style="text-align: left"><strong>Enjoy!<br />
</strong></p>
<p style="text-align: left"><strong><br />
</strong></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="yahoo messenger online">yahoo messenger online</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="cakephp yahoo messenger">cakephp yahoo messenger</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="website yahoo status icon template">website yahoo status icon template</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="add site icon yahoo online">add site icon yahoo online</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="icons to customize your yahoo messenger online status">icons to customize your yahoo messenger online status</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="yahoo online indicator cakephp">yahoo online indicator cakephp</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="yahoo messenger online status html code">yahoo messenger online status html code</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="how to put yahoo messenger status in html5">how to put yahoo messenger status in html5</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="online indicator into your website/blog">online indicator into your website/blog</a></li>
<li><a href="http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/" title="javascript display im status for yahoo">javascript display im status for yahoo</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/others/how-to-display-your-yahoo-messenger-online-status-on-your-blog/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to add a Facebook &#8220;Like&#8221; button to your WordPress Blogs</title>
		<link>http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/</link>
		<comments>http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/#comments</comments>
		<pubDate>Thu, 18 Aug 2011 18:24:45 +0000</pubDate>
		<dc:creator>Nancy</dc:creator>
				<category><![CDATA[Buttons]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Others]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[Resources]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Tooltips]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[apprearance]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[facebook like]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=21539</guid>
		<description><![CDATA[Now, it is easier than ever to add the Facebook famous &#8220;Like&#8221;/&#8221;Recommend&#8221; to your posts and increase your blog popularity. The “Like” button allows users to share their ‘like’ of your WordPress Blog with their friends on Facebook. Every time a user clicks on the “Like” button on your blog, it creates a status update [...]]]></description>
			<content:encoded><![CDATA[<p><strong> </strong></p>
<p>Now, it is easier than ever to add the Facebook famous &#8220;Like&#8221;/&#8221;Recommend&#8221; to your posts and increase your blog popularity. The “Like” button allows users to share their ‘like’ of your WordPress Blog with their friends on Facebook.</p>
<p>Every time a user clicks on the “Like” button on your blog, it creates a status update on the user’s Facebook News Feed with a link back to your WordPress Blog.</p>
<p>Here is how you do it:</p>
<p>1.       Login as administrator to the WordPress admin panel.</p>
<p>2.       Go to Appearance -&gt; Editor.</p>
<p><a rel="attachment wp-att-21578" href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/attachment/appearance-editor/"><img class="aligncenter size-full wp-image-21578" src="http://blogfreakz.com/wp-content/uploads/2011/08/Appearance-Editor.jpg" alt="Appearance Editor How to add a Facebook Like button to your WordPress Blogs" width="1408" height="689" title="How to add a Facebook Like button to your WordPress Blogs" /></a></p>
<p>3.       Place the following code wherever you want the like button to appear:</p>
<p><em>&lt;iframe src=&#8221;http://www.facebook.com/plugins/like.php?href=&lt;?php echo urlencode(get_permalink($post-&gt;ID)); ?&gt;&amp;amp;layout=standard&amp;amp;show_faces=false&amp;amp;width=350&amp;amp;action=like&amp;amp;colorscheme=light&#8221; scrolling=&#8221;no&#8221; frameborder=&#8221;0&#8243; allowTransparency=&#8221;true&#8221; style=&#8221;border:none; overflow:hidden; width:350px; height:25px&#8221;&gt;&lt;/iframe&gt;</em></p>
<p>4.       Save the changes, and the final result should look like this:</p>
<p><a rel="attachment wp-att-21581" href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/attachment/facebook-like/"><img class="aligncenter size-full wp-image-21581" src="http://blogfreakz.com/wp-content/uploads/2011/08/facebook-like.png" alt="facebook like How to add a Facebook Like button to your WordPress Blogs" width="1316" height="727" title="How to add a Facebook Like button to your WordPress Blogs" /></a><br />
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="like button">like button</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="facebook style">facebook style</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="facebook like">facebook like</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="add news facebook code">add news facebook code</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="status likes for facebook codes">status likes for facebook codes</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="wordpress admin panel">wordpress admin panel</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="facebook like button">facebook like button</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="ajax iframe facebook">ajax iframe facebook</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="facebook like button wordpress">facebook like button wordpress</a></li>
<li><a href="http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/" title="add facebook like button to wordpress">add facebook like button to wordpress</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/others/how-to-add-a-facebook-like-button-to-your-wordpress-blogs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fructose &#8211; Now You Can Compile Your Ruby Into PHP</title>
		<link>http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/</link>
		<comments>http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/#comments</comments>
		<pubDate>Sat, 30 Apr 2011 07:42:10 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[Ruby]]></category>
		<category><![CDATA[Software & Tools]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=19572</guid>
		<description><![CDATA[Fructose is a subset of Ruby that&#8217;s designed to be compiled into PHP 5.x. The generated code should run on any PHP version above 5.0. Most major Ruby features are supported, including operator overloading and blocks. Eventually, most of the Ruby standard library will be available to Fructose programs via libfructose. Fructose isn&#8217;t production ready [...]]]></description>
			<content:encoded><![CDATA[<p><a title="fructoselang" rel="nofollow" href="http://www.fructoselang.org" target="_blank">Fructose</a> is a subset of Ruby that&#8217;s designed to be compiled into PHP 5.x. The generated code should run on any PHP version above 5.0. Most major Ruby features are supported, including operator overloading and blocks. Eventually, most of the Ruby standard library will be available to Fructose programs via libfructose.</p>
<p><span id="more-19572"></span></p>
<p><a rel="nofollow" href="http://www.fructoselang.org"><img class="alignnone size-full wp-image-19575" title="fructose" src="http://blogfreakz.com/wp-content/uploads/2011/04/fructose.jpg" alt="fructose Fructose   Now You Can Compile Your Ruby Into PHP" width="600" height="300" /></a></p>
<p>Fructose isn&#8217;t production ready yet, but you&#8217;re free to poke around and try it out over at the <a rel="nofollow" href="http://github.com/charliesome/Fructose">GitHub repository</a>.</p>
<p class="download">Website: <a title="fructoselang" rel="nofollow" href="http://www.fructoselang.org" target="_blank">http://www.fructoselang.org</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="Fructose ruby">Fructose ruby</a></li>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="fructose">fructose</a></li>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="ruby fructose">ruby fructose</a></li>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="compile ruby">compile ruby</a></li>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="compile ruby in php">compile ruby in php</a></li>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="fructose for grails#sclient=psy-ab">fructose for grails#sclient=psy-ab</a></li>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="Now compile Serotonina without dipendencies">Now compile Serotonina without dipendencies</a></li>
<li><a href="http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/" title="ruby fructose cakephp">ruby fructose cakephp</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/tools/fructose-now-you-can-compile-your-ruby-into-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Save Image From URL Using PHP</title>
		<link>http://blogfreakz.com/php/how-to-save-image-from-url-using-php/</link>
		<comments>http://blogfreakz.com/php/how-to-save-image-from-url-using-php/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 21:14:36 +0000</pubDate>
		<dc:creator>Mufti Ali</dc:creator>
				<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blogfreakz.com/?p=15586</guid>
		<description><![CDATA[Today I will share with you simple php code snippet how to save image from external url to your server using PHP. For example, we will save our facebook  and twitter avatar to our server. &#60;?php function save_image($inPath,$outPath){ //Download images from remote server $in= fopen($inPath, &#34;rb&#34;); $out= fopen($outPath, &#34;wb&#34;); while ($chunk = fread($in,8192)) { fwrite($out, [...]]]></description>
			<content:encoded><![CDATA[<p>Today I will share with you simple php code snippet<strong> how to save image from external url to your server using PHP</strong>. For example, we will save our facebook  and twitter avatar to our server.</p>
<p><span id="more-15586"></span></p>
<pre class="brush: php;">
&lt;?php
function save_image($inPath,$outPath){
	//Download images from remote server
    $in=    fopen($inPath, &quot;rb&quot;);
    $out=   fopen($outPath, &quot;wb&quot;);
    while ($chunk = fread($in,8192))
    {
        fwrite($out, $chunk, 8192);
    }
    fclose($in);
    fclose($out);
}
save_image('http://graph.facebook.com/100000881073253/picture','facebook.jpg');
save_image('http://a0.twimg.com/profile_images/457031171/favicoblogfreakz_bigger.png','twitter.jpg');
?&gt;
</pre>
<h3>Alternatif code</h3>
<h4>If you have <code>allow_url_fopen</code> set to <code>true</code>:</h4>
<pre class="brush: php;">
$url = 'http://example.com/image.php';
$img = '/my/folder/flower.gif';
file_put_contents($img, file_get_contents($url));
</pre>
<h4>Else use cURL:</h4>
<pre class="brush: php;">
$ch = curl_init('http://example.com/image.php');
$fp = fopen('/my/folder/flower.gif', 'wb');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);
</pre>
<p><strong>Source</strong> :<a title="save image from url" rel="nofollow" href="http://stackoverflow.com/questions/724391/save-image-from-php-url-using-php" target="_blank"> http://stackoverflow.com/questions/724391/save-image-from-php-url-using-php</a></p>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="http://blogfreakz.com/php/how-to-save-image-from-url-using-php/" title="php save image from url">php save image from url</a></li>
<li><a href="http://blogfreakz.com/php/how-to-save-image-from-url-using-php/" title="save image from url php">save image from url php</a></li>
<li><a href="http://blogfreakz.com/php/how-to-save-image-from-url-using-php/" title="php download image from url">php download image from url</a></li>
<li><a href="http://blogfreakz.com/php/how-to-save-image-from-url-using-php/" title="save image from php url using php">save image from php url using php</a></li>
<li><a href="http://blogfreakz.com/php/how-to-save-image-from-url-using-php/" title="download image from url php">download image from url php</a></li>
<li><a href="http://blogfreakz.com/php/how-to-save-image-from-url-using-php/" title="save image from url using php">save image from url using php</a></li>
<li><a href="http://blogfreakz.com/php/how-to-save-image-from-url-using-php/" title="php save image">php save image</a></li>
<li><a href="http://blogfreakz.com/php/how-to-save-image-from-url-using-php/" title="save image url php">save image url php</a></li>
<li><a href="http://blogfreakz.com/php/how-to-save-image-from-url-using-php/" title="php fopen download image">php fopen download image</a></li>
<li><a href="http://blogfreakz.com/php/how-to-save-image-from-url-using-php/" title="save image from url in php">save image from url in php</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
]]></content:encoded>
			<wfw:commentRss>http://blogfreakz.com/php/how-to-save-image-from-url-using-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

