<?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>SmileyLover Blog &#187; Tips &amp; Tricks</title>
	<atom:link href="http://blog.smileylover.com/category/tips-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.smileylover.com</link>
	<description>Sharing Knowledge and Resources</description>
	<lastBuildDate>Sun, 04 Apr 2010 18:32:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=abc</generator>
		<item>
		<title>Change Adsense Publisher ID In Other Site With PHP and cURL</title>
		<link>http://blog.smileylover.com/change-adsense-publisher-id-in-other-site-with-php-and-curl/</link>
		<comments>http://blog.smileylover.com/change-adsense-publisher-id-in-other-site-with-php-and-curl/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 15:19:51 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Tips & Tricks]]></category>

		<guid isPermaLink="false">http://blog.smileylover.com/?p=215</guid>
		<description><![CDATA[This tutorial is actually a long time I write but only in the Indonesian language, and it is time to change it into English to be understood by more people. Through the help of PHP and cURL, we will try to change the code from adsense publisher ID (adsense injection) which usually use the format [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>This tutorial is actually a long time I write but only in the Indonesian language, and it is time to change it into English to be understood by more people.</p>
<p>Through the help of <strong>PHP</strong> and <strong>cURL</strong>, we will try to <strong>change the code from adsense publisher ID (adsense injection)</strong> which usually use the format &#8220;<strong>pub-1324123412341212</strong>&#8220;. 16 digits after the pub is the adsense code that will be changed into our publisher ID code. Here is a script that will be used:</p>
<p><span id="more-215"></span></p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p215code2'); return false;">View Code</a> PHP</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p2152"><td class="code" id="p215code2"><pre class="php" style="font-family:monospace;">&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
&nbsp;
    <span style="color: #666666; font-style: italic;">//define URL</span>
    <span style="color: #000088;">$open_url</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'http://blog.smileylover.com/all-about-bmw-news-luxury-cars'</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #666666; font-style: italic;">//define your adsense ID, without pub-</span>
    <span style="color: #000088;">$adsense_id</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'1234123412341235'</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #666666; font-style: italic;">//open connection  </span>
    <span style="color: #000088;">$ch</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/curl_init"><span style="color: #990000;">curl_init</span></a><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  
&nbsp;
    <span style="color: #666666; font-style: italic;">//set the url, number of POST vars, POST data  </span>
    <a href="http://www.php.net/curl_setopt"><span style="color: #990000;">curl_setopt</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span>CURLOPT_URL<span style="color: #339933;">,</span> <span style="color: #000088;">$open_url</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  
    <a href="http://www.php.net/curl_setopt"><span style="color: #990000;">curl_setopt</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span> CURLOPT_USERAGENT<span style="color: #339933;">,</span> <span style="color: #0000ff;">'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.2) Gecko/20070219 Firefox/2.0.0.2'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <a href="http://www.php.net/curl_setopt"><span style="color: #990000;">curl_setopt</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span>CURLOPT_FOLLOWLOCATION<span style="color: #339933;">,</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <a href="http://www.php.net/curl_setopt"><span style="color: #990000;">curl_setopt</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #339933;">,</span>CURLOPT_RETURNTRANSFER<span style="color: #339933;">,</span><span style="color: #cc66cc;">1</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>    
    <span style="color: #000088;">$result</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/curl_exec"><span style="color: #990000;">curl_exec</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>  
    <a href="http://www.php.net/curl_close"><span style="color: #990000;">curl_close</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$ch</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
&nbsp;
    <span style="color: #666666; font-style: italic;">//replace original adsense code</span>
        <span style="color: #000088;">$pattern</span>    <span style="color: #339933;">=</span> <span style="color: #0000ff;">'#google_ad_client = \&quot;(.*)\&quot;#'</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$out</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/preg_replace"><span style="color: #990000;">preg_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #000088;">$pattern</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'google_ad_client = &quot;pub-'</span><span style="color: #339933;">.</span><span style="color: #000088;">$adsense_id</span><span style="color: #339933;">.</span><span style="color: #0000ff;">'&quot;'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$result</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$out</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/preg_replace"><span style="color: #990000;">preg_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'#google_ad_slot#'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'//google_ad_slot'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$out</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
        <span style="color: #000088;">$out</span> <span style="color: #339933;">=</span> <a href="http://www.php.net/preg_replace"><span style="color: #990000;">preg_replace</span></a><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'#google_ad_channel#'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'//google_ad_channel'</span><span style="color: #339933;">,</span> <span style="color: #000088;">$out</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    <span style="color: #b1b100;">echo</span> <span style="color: #000088;">$out</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">?&gt;</span></pre></td></tr></table></div>

<p>Please change the <strong>$open_url</strong> the target site that will be changed following codenya <strong>$adsense_id</strong> accordance with your publisher ID. Upload the script to your hosting course must support cURL. Open the script that has been uploaded via the browser and &#8220;<strong>view-source</strong>&#8221; on that page. Then you will find a publisher ID code has been changed according to what we write in the script! Happy earnings:)</p>
<p><a href="http://urlpeak.com" title="Shortened URL For Adsense"><strong>Demo (built in shortened URL)</strong></a></p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_3793" title="Change Adsense Publisher ID In Other Site With PHP and cURL" url="http://blog.smileylover.com/change-adsense-publisher-id-in-other-site-with-php-and-curl/"></script>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://blog.smileylover.com/change-adsense-publisher-id-in-other-site-with-php-and-curl/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add Facebook Chat To Your Firefox And Opera Sidebar</title>
		<link>http://blog.smileylover.com/add-facebook-chat-to-your-firefox-and-opera-sidebar/</link>
		<comments>http://blog.smileylover.com/add-facebook-chat-to-your-firefox-and-opera-sidebar/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 08:32:28 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[facebook chat in sidebar]]></category>

		<guid isPermaLink="false">http://blog.smileylover.com/?p=173</guid>
		<description><![CDATA[Chat features on Facebook have been attracting interest from many people. In fact, there is a tendency people prefer to spend the time to chat through Facebook rather than Yahoo Messenger (YM), which has been popular before. Facebook Chat is located on the toolbar at the bottom of the page, unfortunately, we have to open [...]


Related posts:<ol><li><a href='http://blog.smileylover.com/view-facebook-private-photos-without-being-their-friend/' rel='bookmark' title='Permanent Link: View Facebook Private Photos Without Being Their Friend'>View Facebook Private Photos Without Being Their Friend</a></li>
<li><a href='http://blog.smileylover.com/different-types-links-url-of-facebook/' rel='bookmark' title='Permanent Link: Different Types Links (URL) Of Facebook'>Different Types Links (URL) Of Facebook</a></li>
<li><a href='http://blog.smileylover.com/how-to-get-real-ip-user-in-facebook-application/' rel='bookmark' title='Permanent Link: How To Get Real IP User In Facebook Application'>How To Get Real IP User In Facebook Application</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Chat features on <a href="http://facebook.com">Facebook</a> have been attracting interest from many people. In fact, there is a tendency people prefer to spend the time to chat through Facebook rather than Yahoo Messenger (YM), which has been popular before. Facebook Chat is located on the toolbar at the bottom of the page, unfortunately, we have to open a Facebook page for doing the chat because it&#8217;s already integrated as a one-page site.<br />
Now you no longer need to be bothered to open the Facebook page first to chat with your friends. All you need to do is bookmark a chat app on your browser&#8217;s sidebar! I will explain how to do this in Firefox and Opera. Follow me <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
<span id="more-173"></span><br />
<strong>Place Facebook Chat on Opera sidebar</strong></p>
<ul>
<li>Login to your Facebook account</li>
<li>Then press <strong>CTRL+B</strong> in your keyboard</li>
<li>Add new bookmark, enter this URL -> <strong><a href="http://www.facebook.com/presence/popout.php">http://www.facebook.com/presence/popout.php</a></strong></li>
<li>Check both, <strong>Show In Panel</strong> and <strong>Show In Personal Bar</strong><br />
<a href="http://blog.smileylover.com/add-facebook-chat-to-your-firefox-and-opera-sidebar" target="_blank"><img src="http://i41.tinypic.com/15s2dfp.gif" border="0" alt="Facebook chat in the Opera sidebar"></a></li>
<li>Click new item you just added on the left side Bookmark Panel and vice versa! Facebook chat loaded in your sidebar</li>
<li>For better visual you need to edit <strong>Options</strong> in right side of <strong>Friend Lists</strong> and choose <strong>Pop Out Chat</strong><br />
<a href="http://blog.smileylover.com/add-facebook-chat-to-your-firefox-and-opera-sidebar" target="_blank"><img src="http://i39.tinypic.com/rkzxqo.gif" border="0" alt="Options facebook chat in the sidebar"></a></li>
</ul>
<p><center><br />
In action!!<br />
<a href="http://img34.imageshack.us/i/33wo7c5.gif/" target="_blank"><img src="http://img34.imageshack.us/img34/2853/33wo7c5.th.gif" border="0" alt="Facebook chat in the Opera sidebar with open Google page" /></a><br />
</center><br />
</p>
<p><strong>Place Facebook Chat on Firefox sidebar</strong></p>
<ul>
<li>Login to your Facebook account</li>
<li>Then from your toolbar <strong>Bookmark > Organize Bookmark > New Bookmark</strong></li>
<li>Enter this URL -> <strong><a href="http://www.facebook.com/presence/popout.php">http://www.facebook.com/presence/popout.php</a></strong></li>
<li>Check <strong>Load this bookmark in the sidebar</strong><br /><center><a href="http://img99.imageshack.us/i/1jp3lzd.gif/" target="_blank"><img src="http://img99.imageshack.us/img99/4951/1jp3lzd.th.gif" border="0" alt="Facebook chat in the Frefox sidebar options" /></a></center></li>
<li>Now open your new bookmark then they&#8217;ll automatic open in Firefox sidebar</li>
<li>For better visual you need to edit <strong>Options</strong> in right side of <strong>Friend Lists</strong> and choose <strong>Pop Out Chat</strong>
</ul>
<p>With this tips now you can open other page and still chat with your friends in Facebook. I hope this clear enough for you <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Happy chatting all <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>Regards</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_3793" title="Add Facebook Chat To Your Firefox And Opera Sidebar" url="http://blog.smileylover.com/add-facebook-chat-to-your-firefox-and-opera-sidebar/"></script>

<p>Related posts:<ol><li><a href='http://blog.smileylover.com/view-facebook-private-photos-without-being-their-friend/' rel='bookmark' title='Permanent Link: View Facebook Private Photos Without Being Their Friend'>View Facebook Private Photos Without Being Their Friend</a></li>
<li><a href='http://blog.smileylover.com/different-types-links-url-of-facebook/' rel='bookmark' title='Permanent Link: Different Types Links (URL) Of Facebook'>Different Types Links (URL) Of Facebook</a></li>
<li><a href='http://blog.smileylover.com/how-to-get-real-ip-user-in-facebook-application/' rel='bookmark' title='Permanent Link: How To Get Real IP User In Facebook Application'>How To Get Real IP User In Facebook Application</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.smileylover.com/add-facebook-chat-to-your-firefox-and-opera-sidebar/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Cheap Domain .info from GoDaddy.com For Only $0.99</title>
		<link>http://blog.smileylover.com/cheap-domain-info-from-godaddycom-for-only-099/</link>
		<comments>http://blog.smileylover.com/cheap-domain-info-from-godaddycom-for-only-099/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 09:35:04 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[cheap domain]]></category>
		<category><![CDATA[hide my way]]></category>

		<guid isPermaLink="false">http://blog.smileylover.com/?p=164</guid>
		<description><![CDATA[Good news for those of you who want to purchase the domain. Info with the cheapest price at this time, you can register your new domain to GoDaddy.com. They offer to register a new domain. Info only $ 0.99 / year, with the additional cost of $ 0.20 per domain name year as ICANN Fee. [...]


Related posts:<ol><li><a href='http://blog.smileylover.com/remove-friendster-ads-with-css-injection/' rel='bookmark' title='Permanent Link: Remove Friendster Ads With CSS Injection'>Remove Friendster Ads With CSS Injection</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Good news for those of you who want to purchase the domain. Info with the cheapest price at this time, you can register your new domain to GoDaddy.com. They offer to register a new domain. Info only $ 0.99 / year, with the additional cost of $ 0.20 per domain name year as <a href="http://www.godaddy.com/Domains/Popups/IcannFee.aspx?ci=14663&#038;isc=cjcdom003t">ICANN Fee</a>. So the total cost you must pay only $ 1.19 for the first year. Very cheap is not it?</p>
<p>This is a good opportunity for those of you who are interested to buy many domains and used to Parked domain. Activities domain parking now increasingly sexy since Google issued their latest product, the <a href="https://www.google.com/adsense/afd-settings" title="Adsense For Domain">Adsense For Domains</a> . By using this <strong><a href="http://hide-my-way.info">AFD</a></strong>, you can change the domain that you do not have to be content with ads that are automatically set by Google. We can still set the display on the Edit Settings page Adsense For Domains. This is the example &#8212; <strong><a href="http://hide-my-way.info">Hide My Way</a></strong><br />
<span id="more-164"></span><br />
So, what are you waiting for? immediately register your domain as much as possible with the cheapest price!</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_3793" title="Cheap Domain .info from GoDaddy.com For Only $0.99" url="http://blog.smileylover.com/cheap-domain-info-from-godaddycom-for-only-099/"></script>

<p>Related posts:<ol><li><a href='http://blog.smileylover.com/remove-friendster-ads-with-css-injection/' rel='bookmark' title='Permanent Link: Remove Friendster Ads With CSS Injection'>Remove Friendster Ads With CSS Injection</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.smileylover.com/cheap-domain-info-from-godaddycom-for-only-099/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>View Facebook Private Photos Without Being Their Friend</title>
		<link>http://blog.smileylover.com/view-facebook-private-photos-without-being-their-friend/</link>
		<comments>http://blog.smileylover.com/view-facebook-private-photos-without-being-their-friend/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 09:55:45 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[facebook hack]]></category>
		<category><![CDATA[hack private photos facebook]]></category>

		<guid isPermaLink="false">http://blog.smileylover.com/?p=152</guid>
		<description><![CDATA[Facebook at the time has become the largest social network site and was ranked 4 (Alexa version) around the world. But not like other social networking site, facebook trying to maintain privacy of its members better. One example is the other member does not allowed to view photo album belonging to another member before becoming [...]


Related posts:<ol><li><a href='http://blog.smileylover.com/add-facebook-chat-to-your-firefox-and-opera-sidebar/' rel='bookmark' title='Permanent Link: Add Facebook Chat To Your Firefox And Opera Sidebar'>Add Facebook Chat To Your Firefox And Opera Sidebar</a></li>
<li><a href='http://blog.smileylover.com/how-to-get-real-ip-user-in-facebook-application/' rel='bookmark' title='Permanent Link: How To Get Real IP User In Facebook Application'>How To Get Real IP User In Facebook Application</a></li>
<li><a href='http://blog.smileylover.com/add-connected-sites-to-google-buzz/' rel='bookmark' title='Permanent Link: Add Connected Sites To Google Buzz'>Add Connected Sites To Google Buzz</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><a href="http://facebook.com">Facebook</a> at the time has become the largest social network site and was ranked 4 (<a href="http://www.alexa.com/siteinfo/facebook.com">Alexa version</a>) around the world. But not like other social networking site, facebook trying to maintain privacy of its members better. One example is the other member does not allowed to view photo album belonging to another member before becoming friends.</p>
<p>But now there is an application which is available on its own Facebook to see the photo album from the member without being their friend first. How very easy, you simply enter the URL, ID, Name (select one) from the member concerned and can now  you can see all photo album belonging to them unless they have a lock.<br />
<span id="more-152"></span><br />
The first step, please first login to your <a href="http://facebook.com/login.php">Facebook account</a>. Then open a new page or tab in your browser, enter the following URL into the address bar.</p>
<blockquote><p>
<a href="http://bit.ly/828RuJ"><strong>PhotoStalker v2</strong></a></p>
<p><a href="http://www.facebook.com/login.php?api_key=63b7a5b8175cf509044b63af282108b4&#038;v=1.0&#038;next=http%3A%2F%2Fphotostalker.viewprivatefacebookpictures.com%2F&#038;canvas=1&#038;_fb_q=1" onmousedown="javascript:this.href='http://bit.ly/828RuJ';"><strong>PhotoStalker</strong></a>
</p></blockquote>
<p>Two options will appear that asks for your permission so that applications can be integrated with your account, select Allow. Once the application is installed in to your account, it&#8217;s time you entered the URL, ID, or name of the member you want to see the photo album. </p>
<p><center><br />
<a href="http://www.allimg.com/i/33a4z6386t1301" title="PhotoStalker - View Private Photos Facebook" title="PhotoStalker - View Private Photos Facebook" onmousedown="javascript:this.href='http://bit.ly/828RuJ';"><img src="http://cdn1.allimg.com/allimg/thumbs/126314820791414381.jpg" border="0" alt="PhotoStalker - View Private Photos Facebook" title="PhotoStalker - View Private Photos Facebook"/></a></center></p>
<p>Vice versa, photo albums can now be viewed in full without having to be their friend first. </p>
<p><center><a href="http://www.allimg.com/i/13a3z6387t1301" title="View FAcebook Private Photos Without Being Their Friend" title="View Facebook Private Photos Without Being Their Friend" onmousedown="javascript:this.href='http://bit.ly/828RuJ';"><img src="http://cdn1.allimg.com/allimg/thumbs/126314821336422768.jpg" border="0" alt="View FAcebook Private Photos Without Being Their Friend" title="View Facebook Private Photos Without Being Their Friend"/></a></center></p>
<p>With this facebook application (<a href="http://apps.facebook.com/josh_owns/index.php?_fb_q=1" title="View Facebook Private Photos Without being their friend" onmousedown="javascript:this.href='http://bit.ly/828RuJ';"><strong>PhotoStalker</strong></a>), they do not know that we have been visiting their photo album. Silent way <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Very easy and practical. Enjoy photo album belonging to other people <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_3793" title="View Facebook Private Photos Without Being Their Friend" url="http://blog.smileylover.com/view-facebook-private-photos-without-being-their-friend/"></script>

<p>Related posts:<ol><li><a href='http://blog.smileylover.com/add-facebook-chat-to-your-firefox-and-opera-sidebar/' rel='bookmark' title='Permanent Link: Add Facebook Chat To Your Firefox And Opera Sidebar'>Add Facebook Chat To Your Firefox And Opera Sidebar</a></li>
<li><a href='http://blog.smileylover.com/how-to-get-real-ip-user-in-facebook-application/' rel='bookmark' title='Permanent Link: How To Get Real IP User In Facebook Application'>How To Get Real IP User In Facebook Application</a></li>
<li><a href='http://blog.smileylover.com/add-connected-sites-to-google-buzz/' rel='bookmark' title='Permanent Link: Add Connected Sites To Google Buzz'>Add Connected Sites To Google Buzz</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.smileylover.com/view-facebook-private-photos-without-being-their-friend/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>List Of All Available Yahoo Presence Images</title>
		<link>http://blog.smileylover.com/list-of-all-available-yahoo-presence-images/</link>
		<comments>http://blog.smileylover.com/list-of-all-available-yahoo-presence-images/#comments</comments>
		<pubDate>Tue, 26 May 2009 13:25:54 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.smileylover.com/?p=134</guid>
		<description><![CDATA[The following is a list of all the presence image that you can use directly in your web. Tutorial how to use it you can see here. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 Related posts:Add Yahoo Presence [...]


Related posts:<ol><li><a href='http://blog.smileylover.com/add-yahoo-presence-image-online-status/' rel='bookmark' title='Permanent Link: Add Yahoo Presence Image (Online Status)'>Add Yahoo Presence Image (Online Status)</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!--noadsense-->The following is a list of all the presence image that you can use directly in your web. Tutorial how to use it you can see <a href="http://blog.smileylover.com/add-yahoo-presence-image-online-status/"><strong>here</strong></a>.<br />
<center></p>
<table style="text-align:center">
<tr>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=1&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>1</b></p>
</td>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=2&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>2</b></p>
</td>
</tr>
<tr>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=3&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>3</b></p>
</td>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=4&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>4</b></p>
</td>
</tr>
<tr>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=5&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>5</b></p>
</td>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=6&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>6</b></p>
</td>
</tr>
<tr>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=7&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>7</b></p>
</td>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=8&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>8</b></p>
</td>
</tr>
<tr>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=9&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>9</b></p>
</td>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=10&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>10</b></p>
</td>
</tr>
<tr>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=11&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>11</b></p>
</td>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=12&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>12</b></p>
</td>
</tr>
</table>
<p><span id="more-134"></span></p>
<table style="text-align:center">
<tr>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=13&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>13</b></p>
</td>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=14&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>14</b></p>
</td>
</tr>
<tr>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=15&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>15</b></p>
</td>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=16&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>16</b></p>
</td>
</tr>
<tr>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=17&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>17</b></p>
</td>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=18&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>18</b></p>
</td>
</tr>
<tr>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=19&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>19</b></p>
</td>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=20&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>20</b></p>
</td>
</tr>
<tr>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=21&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>21</b></p>
</td>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=22&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>22</b></p>
</td>
</tr>
<tr>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=23&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>23</b></p>
</td>
<td><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=24&#038;l=us" alt="Yahoo Presence Image - Yahoo Online Image" /><br /><b>24</b></p>
</td>
</tr>
</table>
<p></center></p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_3793" title="List Of All Available Yahoo Presence Images" url="http://blog.smileylover.com/list-of-all-available-yahoo-presence-images/"></script>

<p>Related posts:<ol><li><a href='http://blog.smileylover.com/add-yahoo-presence-image-online-status/' rel='bookmark' title='Permanent Link: Add Yahoo Presence Image (Online Status)'>Add Yahoo Presence Image (Online Status)</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.smileylover.com/list-of-all-available-yahoo-presence-images/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Add Yahoo Presence Image (Online Status)</title>
		<link>http://blog.smileylover.com/add-yahoo-presence-image-online-status/</link>
		<comments>http://blog.smileylover.com/add-yahoo-presence-image-online-status/#comments</comments>
		<pubDate>Sun, 12 Apr 2009 15:08:45 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Tips & Tricks]]></category>
		<category><![CDATA[Yahoo Online Status Image]]></category>
		<category><![CDATA[Yahoo Presence Image]]></category>

		<guid isPermaLink="false">http://blog.smileylover.com/?p=126</guid>
		<description><![CDATA[To be closer to the visitor, the webmaster will typically install yahoo presence image to give their status at the time. In this way, visitors can interact directly or chat through yahoo messenger application. You must have your Yahoo Mail first. Go to Yahoo Mail for free register . Then use the following code to [...]


Related posts:<ol><li><a href='http://blog.smileylover.com/list-of-all-available-yahoo-presence-images/' rel='bookmark' title='Permanent Link: List Of All Available Yahoo Presence Images'>List Of All Available Yahoo Presence Images</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><!--noadsense-->To be closer to the visitor, the webmaster will typically install yahoo presence image to give their status at the time.  In this way, visitors can interact directly or chat through yahoo messenger application.  You must have your Yahoo Mail first.  Go to <a href="http://yahoomail.com">Yahoo Mail</a> for free register <img src='http://blog.smileylover.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  .  Then use the following code to display the status of your YM at the time.</p>

<div class="wp_codebox_msgheader wp_codebox_hide"><span class="right"><sup><a href="http://www.ericbess.com/ericblog/2008/03/03/wp-codebox/#examples" target="_blank" title="WP-CodeBox HowTo?"><span style="color: #99cc00">?</span></a></sup></span><span class="left"><a href="javascript:;" onclick="javascript:showCodeTxt('p126code4'); return false;">View Code</a> HTML</span><div class="codebox_clear"></div></div><div class="wp_codebox"><table><tr id="p1264"><td class="code" id="p126code4"><pre class="html" style="font-family:monospace;">&lt;a href=&quot;ymsgr:sendIM?YOUR-ID&quot;&gt;&lt;img src=&quot;http://presence.msg.yahoo.com/online?u=YOUR-ID&amp;m=g&amp;t=14&amp;l=us&quot; /&gt;&lt;/a&gt;</pre></td></tr></table></div>

<p>Please change <strong>YOUR-ID</strong> with your real ID from YM.  Following is an example of the code above with my ID.</p>
<p><a href="ymsgr:sendIM?greenhouseprod" title="Yahoo Presence Image - Online Status"><img src="http://presence.msg.yahoo.com/online?u=greenhouseprod&#038;m=g&#038;t=14&#038;l=us" alt="Yahoo Presence Image - Online Status" /></a></p>
<p><span id="more-126"></span></p>
<p>There are 24 pictures of choice ready, you simply change the value of &#8220;<strong>t</strong>&#8220;. in the example above the value of &#8220;<strong>t</strong>&#8221; is 14. So start feeling closer to your site visitors</p>
<script type="text/javascript" class="owbutton" src="http://onlywire.com/btn/button_3793" title="Add Yahoo Presence Image (Online Status)" url="http://blog.smileylover.com/add-yahoo-presence-image-online-status/"></script>

<p>Related posts:<ol><li><a href='http://blog.smileylover.com/list-of-all-available-yahoo-presence-images/' rel='bookmark' title='Permanent Link: List Of All Available Yahoo Presence Images'>List Of All Available Yahoo Presence Images</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://blog.smileylover.com/add-yahoo-presence-image-online-status/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
