<?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>Gobinath IN &#187; Programming</title> <atom:link href="http://www.gobinath.in/tag/programming/feed" rel="self" type="application/rss+xml" /><link>http://www.gobinath.in</link> <description>Just another WordPress site</description> <lastBuildDate>Sun, 22 Jan 2012 07:07:01 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>Drupal Multi-site &amp; Single Sign-On</title><link>http://www.gobinath.in/drupal-multi-site-single-sign-on</link> <comments>http://www.gobinath.in/drupal-multi-site-single-sign-on#comments</comments> <pubDate>Wed, 06 Jan 2010 09:26:46 +0000</pubDate> <dc:creator>gobinathm</dc:creator> <category><![CDATA[Drupal]]></category> <category><![CDATA[Open Source]]></category> <category><![CDATA[PERL]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[PHP]]></category><guid
isPermaLink="false">http://www.gobinath.in/?p=69</guid> <description><![CDATA[Multi-Site is one of the Powerful feature available in Drupal CMS.  If you are running more than one Drupal site, multi-site will help you simply all your site management tasks. Multi-site allows the user to share a single Drupal installation (including core code, contributed modules, and themes) among several sites. This is particularly useful for managing the code since each upgrade only needs to be done once.There are multiple Options available for Drupal Multi-Site installation. Couple of them are listed down here;Each site can have its own database
All the sites can share the same database
Each site can have own content database &#38; shared user database. This can be done in two different ways either by creating a separate DB [....] ]]></description> <content:encoded><![CDATA[<p>Multi-Site is one of the Powerful feature available in Drupal CMS.  If you are running more than one Drupal site, multi-site will help you simply all your site management tasks. Multi-site allows the user to share a single Drupal installation (including core code, contributed modules, and themes) among several sites. This is particularly useful for managing the code since each upgrade only needs to be done once.</p><p>There are multiple Options available for Drupal Multi-Site installation. Couple of them are listed down here;</p><ul><li>Each site can have its own database</li><li>All the sites can share the same database</li><li>Each site can have own content database &amp; shared user database. This can be done in two different ways either by c<em>reating a separate DB for User related tables</em> (or) <em>considering one of the site as a base  &amp;  the hold the user tables in that DB</em></li></ul><p><strong><span
id="more-69"></span>Approach for single sign-on</strong></p><p>If  the option of having different content database for all sites &amp; using one site as base (for User tables) is selected, then the following snippet might help you implementing the solutions. I&#8217;m providing snippet (or) information to this implementation because the drupal.org, have solutions for all the other implementation.</p><p><strong>Solution :</strong></p><p>Step 1: Install &amp; Configure <a
href="http://drupal.org/node/138889" target="_blank">Drupal Multi-Site</a> , remember to setup all the drupal instance with different database.  After the installation is complete you should be having multiple site running with multiple database on one code base</p><p>Step 2: As per the  <a
href="http://drupal.org/node/18429" target="_blank">Module developer Guide</a>, Drupal can connect to different databases with elegance and ease.  Please note, it has to be of the same database type. So we convert the $db_url variable to an array.</p><pre class="php">$db_url['default'] = 'mysql://drupal:drupal@localhost/drupal';
$db_url['base'] = 'mysql://user:pwd@localhost/anotherdb';</pre><p>now, we need to establish connect to the base database  using the drupal function <a
href="http://api.drupal.org/api/function/db_set_active" target="_blank">db_set_active</a>() as &amp; when required.  <a
href="http://api.drupal.org/api/function/db_set_active" target="_blank"><em>db_set_active</em></a><em>() function can be used to change where database queries are sent. If the database has not yet been used, it is initialized using the URL specified for that name in Drupal&#8217;s configuration file. If this name is not defined, a duplicate of the default connection is made instead.Be sure to change the connection back to the default when done with custom code.</em></p><pre class="php">db_set_active($name = 'default');</pre><p><strong>Parameters</strong><br
/> $name The name assigned to the newly active database connection. If omitted, the default connection will be made active.<br
/> <strong>Return value</strong><br
/> the name of the previously active database or FALSE if non was found.</p><p>Note : <strong>This only works with two databases of the same type.</strong></p><p><strong>Alternative Implementation of the Solution:</strong></p><p>Now there is one challenge of  harding coding the base DB informations, as its not a good practice,because if the DB connection parameter value changes you may need to update multiple place. So to avoid this, you can use the following code snippet.</p><p><strong>Base Site’s Setting </strong>- Add this line after the $db_url</p><pre class="php">$db_url=array('default'=&gt;$db_url, 'base'=&gt;$db_url);</pre><p><strong>Child Site’s Custom Setting</strong> &#8211; Add the below snippet after your $db_url declaration of the respective child sites.</p><p><span
lang="en-us"><span
style="font-family:Calibri;"><br
/> </span></span></p><pre class="php"> // Folder name of the site which you consider as base. Please remember in multi-site environment you are going to have folder for ever site
$dName='example.com';
require_once "sites/$dName/settings.php";
$b_db_url=$db_url['base'];
$db_url=array('default'=&gt;$db_url, 'base'=&gt;$b_db_url);</pre><p><span
style="font-family:Calibri;"><span
style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">Some Alternatives : <a
href="http://drupal.org/project/sso">http://drupal.org/project/sso</a>,</span></span></p><p><span
style="font-family:Calibri;"><span
style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">This solution will be applicable only if you wish to host the User database on your server, else you can use Open ID authentication</span></span></p><p><span
style="font-family:Calibri;"><span
style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;"><strong>Updated on Jan 07,2010 : </strong>This solution can be implemented for the Drupal sites which is running as Separate instance &amp; in the same server (Shared Hosting). Provide the complete path of the BASE Site&#8217;s default folder. </span></span></p><blockquote><p><span
style="font-family:Calibri;"><span
style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">For Ex : </span></span></p><p><span
style="font-family:Calibri;"><span
style="font-family:Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif;">[phpull]include_once[/phpull](&#8220;/srv/www/sites/www_xyz_com/sites/default/settings.php&#8221;);</span></span></p></blockquote><blockquote><p><em><strong>To make this solution, completely configurable one, please create a variable to hold the Base site folder Name</strong></em></p></blockquote> ]]></content:encoded> <wfw:commentRss>http://www.gobinath.in/drupal-multi-site-single-sign-on/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Google Docs</title><link>http://www.gobinath.in/google-docs</link> <comments>http://www.gobinath.in/google-docs#comments</comments> <pubDate>Fri, 28 Sep 2007 06:24:55 +0000</pubDate> <dc:creator>gobinathm</dc:creator> <category><![CDATA[Google]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Technology]]></category><guid
isPermaLink="false">http://www.gobinath.com/2007/09/28/google-docs.html</guid> <description><![CDATA[Today, when I visited google?s home page for searching something, I found a line which read as create &#38; share presentation online. Its PowerPoint presentation?s online now. Ya new addition to google docs, Google one it again, one more office added in the Google Docs. With this post I am going to give what is [...]]]></description> <content:encoded><![CDATA[<p>Today, when I visited google?s home page for searching something, I found a line which read as create &amp; share presentation online. Its PowerPoint presentation?s online now. Ya new addition to google docs, Google one it again, one more office added in the Google Docs. With this post I am going to give what is available over there in Google Docs. The features list is as follows,</p><p><span
id="more-241"></span></p><ul><li> File ? as usual similar to what you have in google doc and spreadsheet, with Start Presentation option as extra over here.</li><li>Edit &amp; review tabs</li><li>New Slide, Duplicate Slide , Delete Slide ? these are the option to work on the slides available on your presentation</li><li>Insert Image ? it lets you to insert an image to your current presentation. You can upload it from you local machine</li><li>Insert Text ? adds a text control to your slide, where you can add your text</li><li>Change theme ? a set of themes available for making your presentation</li></ul><p>Apart from the above mentioned option there is a list of common option available like format the text, color, etc. We have option to rearrange the slides</p><p>Public URL for my sample presentation : <a
href="http://docs.google.com/Present?docid=dfth9zxq_16d6k7bk&amp;fs=true">http://docs.google.com/Present?docid=dfth9zxq_16d6k7bk&amp;fs=true</a><br
/> I have presentation online, may be you can check this out <a
href="http://docs.google.com/Present?docid=dfth9zxq_16d6k7bk&amp;invite=dh4d5btx">http://docs.google.com/Present?docid=dfth9zxq_16d6k7bk&amp;invite=dh4d5btx</a></p><p><img
src="http://www.gobinath.com/wp-content/uploads/2007/09/google_presentation.thumbnail.JPG" alt="Google Home Page" /></p> ]]></content:encoded> <wfw:commentRss>http://www.gobinath.in/google-docs/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>Google Docs</title><link>http://www.gobinath.in/google-docs-2</link> <comments>http://www.gobinath.in/google-docs-2#comments</comments> <pubDate>Fri, 28 Sep 2007 05:45:24 +0000</pubDate> <dc:creator>gobinathm</dc:creator> <category><![CDATA[Google]]></category> <category><![CDATA[Programming]]></category><guid
isPermaLink="false">http://gobinath.com/2007/09/28/google-docs.html</guid> <description><![CDATA[Today, when I visited Google&#8217;s home page for searching something, I found a line which read as create &#38; share presentation online. Its PowerPoint presentation&#8217;s online now. Ya new addition to Google docs, Google one it again, one more office added in the Google Docs. With this post I am going to give what is [...]]]></description> <content:encoded><![CDATA[<p>Today, when I visited Google&#8217;s home page for searching something, I found a line which read as create &amp; share presentation online. Its PowerPoint presentation&#8217;s online now. Ya new addition to Google docs, Google one it again, one more office added in the Google Docs. With this post I am going to give what is available over there in Google Docs. The features list is as follows,</p><p><span
id="more-282"></span></p><ul><li> File  as usual similar to what you have in Google doc and spreadsheet, with Start Presentation option as extra over here.</li><li>Edit &amp; review tabs</li><li>New Slide, Duplicate Slide , Delete Slide ? these are the option to work on the slides available on your presentation</li><li>Insert Image  it lets you to insert an image to your current presentation. You can upload it from you local machine</li><li>Insert Text  adds a text control to your slide, where you can add your text</li><li>Change theme  a set of themes available for making your presentation</li></ul><p>Apart from the above mentioned option there is a list of common option available like format the text, color, etc. We have option to rearrange the slides</p><p>Public URL for my sample presentation : <a
href="http://docs.google.com/Present?docid=dfth9zxq_16d6k7bk&amp;fs=true">http://docs.google.com/Present?docid=dfth9zxq_16d6k7bk&amp;fs=true</a><br
/> I have presentation online, may be you can check this out <a
href="http://docs.google.com/Present?docid=dfth9zxq_16d6k7bk&amp;invite=dh4d5btx">http://docs.google.com/Present?docid=dfth9zxq_16d6k7bk&amp;invite=dh4d5btx</a></p><p
align="center"><a
title="Google Presentation" rel="lightbox[pics-1204031544]" href="http://gobinath.com/wp-content/uploads/2008/02/google_presentation.JPG"><img
class="imageframe imgalignleft" src="http://gobinath.com/wp-content/uploads/2008/02/google_presentation.thumbnail.JPG" border="0" alt="Google Presentation" width="200" height="143" /></a></p> ]]></content:encoded> <wfw:commentRss>http://www.gobinath.in/google-docs-2/feed</wfw:commentRss> <slash:comments>3</slash:comments> </item> <item><title>Update Services &#8211; Ping Servers</title><link>http://www.gobinath.in/update-services</link> <comments>http://www.gobinath.in/update-services#comments</comments> <pubDate>Sat, 25 Aug 2007 16:28:49 +0000</pubDate> <dc:creator>gobinathm</dc:creator> <category><![CDATA[Programming]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[PHP]]></category> <category><![CDATA[Server]]></category><guid
isPermaLink="false">http://www.gobinath.com/2007/08/25/update-services.html</guid> <description><![CDATA[As many of you would be aware that there are lost of services available to notify that you have updated your website / blog. If you are using wordpress then by default it have configuration to ping two of these services. They are http://rpc.pingomatic.com/, http://rpc.technorati.com/rpc/ping . WordPress automatically notifies popular Update Services that you&#8217;ve updated [...]]]></description> <content:encoded><![CDATA[<p>As many of you would be aware that there are lost of services available to notify that you have updated your website / blog. If you are using wordpress then by default it have configuration to ping two of these services. They are <em>http://rpc.pingomatic.com/, http://rpc.technorati.com/rpc/ping . </em>WordPress automatically notifies popular Update Services that you&#8217;ve updated your blog by sending a XML-RPC (http://www.xmlrpc.com/) ping each time you create or update a post. <em>Ping to these services as soon as you update your blog, which is gone to drive a good amount of traffic to your site. </em></p><p><span
id="more-223"></span>Apart from these two services used by wordpress, i ping some other services which i have listed below. Some of you might be interested in these services. Here is the list of blog pinging services:<br
/> <code></p><p>http://api.feedster.com/ping</p><p>http://api.moreover.com/ping</p><p>http://api.my.yahoo.com/rss/ping</p><p>http://blogsearch.google.com/ping/RPC2</p><p>http://ping.amagle.com/</p><p>http://ping.bitacoras.com</p><p>http://ping.blo.gs/</p><p>http://ping.feedburner.com</p><p>http://ping.rootblog.com/rpc.php</p><p>http://ping.syndic8.com/xmlrpc.php</p><p>http://ping.weblogalot.com/rpc.php</p><p>http://rcs.datashed.net/RPC2/</p><p>http://rpc.blogbuzzmachine.com/RPC2</p><p>http://rpc.blogrolling.com/pinger/</p><p>http://rpc.icerocket.com:10080/</p><p>http://rpc.newsgator.com/</p><p>http://rpc.weblogs.com/RPC2</p><p>http://topicexchange.com/RPC2</p><p>http://www.blogdigger.com/RPC2</p><p>http://www.blogoole.com/ping/</p><p>http://www.blogoon.net/ping/</p><p>http://www.blogsnow.com/ping</p><p>http://www.blogstreet.com/xrbin/xmlrpc.cgi</p><p>http://www.lasermemory.com/lsrpc/</p><p>http://www.newsisfree.com/RPCCloud</p><p>http://www.popdex.com/addsite.php</p><p>http://www.snipsnap.org/RPC2</p><p>http://www.wasalive.com/ping/</p><p>http://www.weblogues.com/RPC/</code></p><p>A file with all these url is available for download. <a
target="_blank" href="http://www.gobinath.com/wp-content/uploads/2007/08/ping_service.txt" title="Ping Service Files">You can download it here</a></p> ]]></content:encoded> <wfw:commentRss>http://www.gobinath.in/update-services/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Update Services &#8211; Ping Servers</title><link>http://www.gobinath.in/update-services-2</link> <comments>http://www.gobinath.in/update-services-2#comments</comments> <pubDate>Sat, 25 Aug 2007 16:58:10 +0000</pubDate> <dc:creator>gobinathm</dc:creator> <category><![CDATA[PHP]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[Server]]></category><guid
isPermaLink="false">http://gobinath.com/2007/08/25/update-services.html</guid> <description><![CDATA[As many of you would be aware that there are lost of services available to notify that you have updated your website / blog. If you are using wordpress then by default it have configuration to ping two of these services. They are http://rpc.pingomatic.com/, http://rpc.technorati.com/rpc/ping . WordPress automatically notifies popular Update Services that you&#8217;ve updated [...]]]></description> <content:encoded><![CDATA[<p>As many of you would be aware that there are lost of services available to notify that you have updated your website / blog. If you are using wordpress then by default it have configuration to ping two of these services. They are <em>http://rpc.pingomatic.com/, http://rpc.technorati.com/rpc/ping . </em>WordPress automatically notifies popular Update Services that you&#8217;ve updated your blog by sending a XML-RPC (http://www.xmlrpc.com/) ping each time you create or update a post. <em>Ping to these services as soon as you update your blog, which is gone to drive a good amount of traffic to your site. </em></p><p><span
id="more-389"></span>Apart from these two services used by wordpress, i ping some other services which i have listed below. Some of you might be interested in these services. Here is the list of blog pinging services:<br
/> <code></p><p>http://api.feedster.com/ping</p><p>http://api.moreover.com/ping</p><p>http://api.my.yahoo.com/rss/ping</p><p>http://blogsearch.google.com/ping/RPC2</p><p>http://ping.amagle.com/</p><p>http://ping.bitacoras.com</p><p>http://ping.blo.gs/</p><p>http://ping.feedburner.com</p><p>http://ping.rootblog.com/rpc.php</p><p>http://ping.syndic8.com/xmlrpc.php</p><p>http://ping.weblogalot.com/rpc.php</p><p>http://rcs.datashed.net/RPC2/</p><p>http://rpc.blogbuzzmachine.com/RPC2</p><p>http://rpc.blogrolling.com/pinger/</p><p>http://rpc.icerocket.com:10080/</p><p>http://rpc.newsgator.com/</p><p>http://rpc.weblogs.com/RPC2</p><p>http://topicexchange.com/RPC2</p><p>http://www.blogdigger.com/RPC2</p><p>http://www.blogoole.com/ping/</p><p>http://www.blogoon.net/ping/</p><p>http://www.blogsnow.com/ping</p><p>http://www.blogstreet.com/xrbin/xmlrpc.cgi</p><p>http://www.lasermemory.com/lsrpc/</p><p>http://www.newsisfree.com/RPCCloud</p><p>http://www.popdex.com/addsite.php</p><p>http://www.snipsnap.org/RPC2</p><p>http://www.wasalive.com/ping/</p><p>http://www.weblogues.com/RPC/</code></p><p>A file with all these url is available for download. <a
title="Ping Service Files" href="http://abhosted.com/blog//wp-content/uploads/2007/08/ping_service.txt" target="_blank">You can download it here</a></p> ]]></content:encoded> <wfw:commentRss>http://www.gobinath.in/update-services-2/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Search Engine Friendly &#8211; WordPress Plugins</title><link>http://www.gobinath.in/search-engine-friendly-wordpress-plugins</link> <comments>http://www.gobinath.in/search-engine-friendly-wordpress-plugins#comments</comments> <pubDate>Thu, 16 Aug 2007 18:10:40 +0000</pubDate> <dc:creator>gobinathm</dc:creator> <category><![CDATA[Google]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[Yahoo]]></category> <category><![CDATA[Plugin]]></category> <category><![CDATA[Programming]]></category><guid
isPermaLink="false">http://www.gobinath.com/2007/08/16/search-engine-friendly-wordpress-plugins.html</guid> <description><![CDATA[Some Search engine friendly wordpress plugin which got me good result with in one week of installation. Below image is the proof of that. I am talking about two plugins the first one is All in One SEO Pack and the other one is Google Sitemap Generator . I have been benefited by using both [...]]]></description> <content:encoded><![CDATA[<p>Some Search engine friendly wordpress plugin which got me good result with in one week of installation. Below image is the proof of that.<br
/> <a
rel="attachment wp-att-155" href="http://www.gobinath.com/2007/08/16/search-engine-friendly-wordpress-plugins.html/traffic-source/" title="Traffic Source"></a></p><p
style="text-align:center;"><a
rel="attachment wp-att-155" href="http://www.gobinath.com/2007/08/16/search-engine-friendly-wordpress-plugins.html/traffic-source/" title="Traffic Source"><img
border="0" src="http://www.gobinath.com/wp-content/uploads/2007/08/trafic-source.JPG" alt="Traffic Source" /></a></p><p>I am talking about two plugins the first one is <a
target="_blank" href="http://wp.uberdose.com/2007/03/24/all-in-one-seo-pack/" title="All in One SEO Pack">All in One SEO Pack</a> and the other one is <a
target="_blank" href="http://www.arnebrachhold.de/2006/01/07/google-sitemap-generator-for-wordpress-3-beta" title="Google Site Map generator">Google Sitemap Generator</a> . I have been benefited by using both the plugins. I will give a little idea about both these plugins.</p><ul><li>All in one SEO Pack &#8211; This plugin allows you to write good title &amp; meta data (keywords) to you post / pages.</li><li>Sitemap generator &#8211; its generators search engine friendly sitemap. The generated XML-Sitemap compliant sitemap . The format is supported by various search engines like google,yahoo, msn</li></ul><p>I have suggested this plugin to some of my friends as it work good for me. I strong agree with the purpose of this plugin.</p> ]]></content:encoded> <wfw:commentRss>http://www.gobinath.in/search-engine-friendly-wordpress-plugins/feed</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>GlossyBlue ver 1.4</title><link>http://www.gobinath.in/glossyblue-ver-14-2</link> <comments>http://www.gobinath.in/glossyblue-ver-14-2#comments</comments> <pubDate>Tue, 10 Jul 2007 06:48:05 +0000</pubDate> <dc:creator>gobinathm</dc:creator> <category><![CDATA[PHP]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[Theme]]></category><guid
isPermaLink="false">http://gobinath.com/2007/07/10/glossyblue-ver-14.html</guid> <description><![CDATA[That&#8217;s was an excellent theme which I have come across in recent time. This color combination and the way the theme was packed it brilliant. I Simply Love this design. I wish I should have got this template long back, so that I would have kept my site up and running all time. If any [...]]]></description> <content:encoded><![CDATA[<p>That&#8217;s was an excellent theme which I have come across in recent time. This color combination and the way the theme was packed it brilliant. I Simply Love this design. I wish I should have got this template long back, so that I would have kept my site up and running all time. If any one look for brilliant piece of graphic work I will recommend you to visit the <a
href="http://www.ndesign-studio.com/" target="_blank">N.Design Studio</a>.</p> ]]></content:encoded> <wfw:commentRss>http://www.gobinath.in/glossyblue-ver-14-2/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>GlossyBlue ver 1.4</title><link>http://www.gobinath.in/glossyblue-ver-14</link> <comments>http://www.gobinath.in/glossyblue-ver-14#comments</comments> <pubDate>Tue, 10 Jul 2007 06:45:26 +0000</pubDate> <dc:creator>gobinathm</dc:creator> <category><![CDATA[PHP]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Wordpress]]></category> <category><![CDATA[Theme]]></category><guid
isPermaLink="false">http://www.gobinath.com/2007/07/10/glossyblue-ver-14.html</guid> <description><![CDATA[That’s was an excellent theme which I have come across in recent time. This color combination and the way the theme was packed it brilliant. I Simply Love this design. I wish I should have got this template long back, so that I would have kept my site up and running all time. If any [...]]]></description> <content:encoded><![CDATA[<p><span
style="font-family:Georgia;">That’s was an excellent theme which I have come across in recent time. This color combination and the way the theme was packed it brilliant. I Simply Love this design. I wish I should have got this template long back, so that I would have kept my site up and running all time. </span><span></span>If any one look for brilliant piece of graphic work I will recommend you to visit the <a
target="_blank" href="http://www.ndesign-studio.com/">N.Design Studio</a>.</p> ]]></content:encoded> <wfw:commentRss>http://www.gobinath.in/glossyblue-ver-14/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Ajax Every where</title><link>http://www.gobinath.in/ajax-every-where</link> <comments>http://www.gobinath.in/ajax-every-where#comments</comments> <pubDate>Tue, 13 Jun 2006 09:46:42 +0000</pubDate> <dc:creator>gobinathm</dc:creator> <category><![CDATA[Programming]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Ajax]]></category> <category><![CDATA[Javascript]]></category> <category><![CDATA[XML]]></category><guid
isPermaLink="false">http://www.gobinath.com/2006/06/13/ajax-every-where.html</guid> <description><![CDATA[Two three months back when i saw very little application using ajax on the internet. But today, which i checked some site, any where and every where its ajax. Check the rediffmail , They to went dynamic today. Similar to the other mail programs. Blogged with Flock]]></description> <content:encoded><![CDATA[<p>Two three months back when i saw very little application using ajax on the internet. But today, which i checked some site, any where and every where its ajax. Check the rediffmail , They to went dynamic today. Similar to the other mail programs.</p><p
style="font-size:8px;text-align:right;">Blogged with <a
target="_new" href="http://www.flock.com" title="Flock">Flock</a></p> ]]></content:encoded> <wfw:commentRss>http://www.gobinath.in/ajax-every-where/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>PHP Classes</title><link>http://www.gobinath.in/php-classes-2</link> <comments>http://www.gobinath.in/php-classes-2#comments</comments> <pubDate>Tue, 16 May 2006 20:07:30 +0000</pubDate> <dc:creator>gobinathm</dc:creator> <category><![CDATA[PHP]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[PHPClasses]]></category> <category><![CDATA[Technology]]></category><guid
isPermaLink="false">http://www.gobinath.com/2006/05/17/php-classes.html</guid> <description><![CDATA[Just now i saw the Top 10 Charts in PHPclasses.org. And found that my name is listed in two sections(Check the picture for info). Its a really good to see this. Unfourtunately i am sad that i was not able to contribute more to the site,due to work load. Hope i will get some good [...]]]></description> <content:encoded><![CDATA[<table><tr><td><a
href="http://www.gobinath.com/wp-content/uploads/2007/07/elephpant_logo.gif" title="PHP Classes"><img
border="0" src="http://www.gobinath.com/wp-content/uploads/2007/07/elephpant_logo.thumbnail.gif" alt="PHP Classes" /></a></td><td
vAlign="top">Just now i saw the Top 10 Charts in PHPclasses.org. And found that my name is listed in two sections(Check the picture for info). Its a really good to see this. Unfourtunately i am sad <img
src="http://d3hin1y8ehrmgf.cloudfront.net/wp-includes/images/smilies/icon_sad.gif?9d7bd4" alt=':(' class='wp-smiley' /> that i was not able to contribute more to the site,due to work load. Hope i will get some good stuffs soon.</td></tr></table> ]]></content:encoded> <wfw:commentRss>http://www.gobinath.in/php-classes-2/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Served from: www.gobinath.in @ 2012-02-05 06:27:42 by W3 Total Cache -->
