<?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; PHP</title> <atom:link href="http://www.gobinath.in/tag/php/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>PHP Questions</title><link>http://www.gobinath.in/php-questions-2</link> <comments>http://www.gobinath.in/php-questions-2#comments</comments> <pubDate>Thu, 14 Feb 2008 19:23:04 +0000</pubDate> <dc:creator>gobinathm</dc:creator> <category><![CDATA[PHP]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Programing]]></category> <category><![CDATA[Technology]]></category><guid
isPermaLink="false">http://gobinath.com/2008/02/15/php-questions.html</guid> <description><![CDATA[Over the Internet many people are searching for the interview question to get prepare for any PHP interview. He i am going to compile a series of such question collected from various source &#38; my experiences. This Series will have both Q &#38; A which will help others to achieve their tasks. 1.How can I [...]]]></description> <content:encoded><![CDATA[<p>Over the Internet many people are searching for the interview question to get prepare for any PHP interview. He i am going to compile a series of such question collected from various source &amp; my experiences. This Series will have both Q &amp; A which will help others to achieve their tasks.</p><p>1.How can I maintain the count of how many persons have hit my site?<br
/> 2. What is difference between mysql_fetch_array(), mysql_fetch_row() and mysql_fetch_object()?<br
/> 3. How I can make a chat page in php in simple<br
/> 4. What is the difference between echo and print statement?<br
/> 5. What is differenc between mysql_connect and mysql_pconnect?<br
/> 6. How I can get IP address of the usr?<br
/> 7. How I will check that user is logged in or not?<br
/> 8. I want to make it a function and I want to use it in each page and after login I want to go in current page?<br
/> 9. How do we know browser properties?<br
/> 10. If you have to work with dates in the following format: ?Tuesday, February 14, 2006 @ 10:39 am?, how can you convert them to another format, that is easier to use?<br
/> 11. What is difference between require_once(), require(), include()?</p> ]]></content:encoded> <wfw:commentRss>http://www.gobinath.in/php-questions-2/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>PHP Questions</title><link>http://www.gobinath.in/php-questions</link> <comments>http://www.gobinath.in/php-questions#comments</comments> <pubDate>Thu, 14 Feb 2008 19:22:56 +0000</pubDate> <dc:creator>gobinathm</dc:creator> <category><![CDATA[PHP]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Technology]]></category> <category><![CDATA[Programing]]></category><guid
isPermaLink="false">http://www.gobinath.com/2008/02/15/php-questions.html</guid> <description><![CDATA[Over the Internet many people are searching for the interview question to get prepare for any PHP interview. He i am going to compile a series of such question collected from various source &#38; my experiences. This Series will have both Q &#38; A which will help others to achieve their tasks. 1.How can I [...]]]></description> <content:encoded><![CDATA[<p>Over the Internet many people are searching for the interview question to get prepare for any PHP interview. He i am going to compile a series of such question collected from various source &amp; my experiences. This Series will have both Q &amp; A which will help others to achieve their tasks.</p><p>1.How can I maintain the count of how many persons have hit my site?<br
/> 2. What is difference between mysql_fetch_array(), mysql_fetch_row() and mysql_fetch_object()?<br
/> 3. How I can make a chat page in php in simple<br
/> 4. What is the difference between echo and print statement?<br
/> 5. What is differenc between mysql_connect and mysql_pconnect?<br
/> 6. How I can get IP address of the usr?<br
/> 7. How I will check that user is logged in or not?<br
/> 8. I want to make it a function and I want to use it in each page and after login I want to go in current page?<br
/> 9. How do we know browser properties?<br
/> 10. If you have to work with dates in the following format: “Tuesday, February 14, 2006 @ 10:39 am”, how can you convert them to another format, that is easier to use?<br
/> 11. What is difference between require_once(), require(), include()?</p> ]]></content:encoded> <wfw:commentRss>http://www.gobinath.in/php-questions/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress 2.3 beta-1</title><link>http://www.gobinath.in/wordpress-23-beta-1-2</link> <comments>http://www.gobinath.in/wordpress-23-beta-1-2#comments</comments> <pubDate>Tue, 28 Aug 2007 18:28:27 +0000</pubDate> <dc:creator>gobinathm</dc:creator> <category><![CDATA[PHP]]></category> <category><![CDATA[Wordpress]]></category><guid
isPermaLink="false">http://gobinath.com/2007/08/28/wordpress-23-beta-1.html</guid> <description><![CDATA[Today i just happen to see that there is a wordpress beta release, i.e., wordpress 2.3 beta-1. As this beta its strictly for Professionals, who are familiar with php. As stated by the community. I am a php professional and i have never tried any of the wordpress beta release, so today i thought that [...]]]></description> <content:encoded><![CDATA[<p>Today i just happen to see that there is a wordpress beta release, i.e., <a
title="Beta Download URL" href="http://wordpress.org/development/2007/08/23-beta-1/" target="_blank">wordpress 2.3 beta-1</a>. As this beta its strictly for Professionals, who are familiar with php. As stated by the community. I am a php professional and i have never tried any of the wordpress beta release, so today i thought that let me do it.</p><p>Around 9.30 PM IST, i have updated all my file and upgraded my database as well. Upgrading database ?? ya of course as this version of wordpress have some new features there are some new tables which needs to be created. The two main new feature which i was pretty impressed with are <em>inbuilt TAGS &amp; plugin and core update notification.</em> What is it all about.</p><p><strong><span
id="more-390"></span>Tags:<br
/> </strong>many of us would have use ultimate tag warrior plugin to have tagging feature in our blog, so from now there is no need for using any special plugins for this. Its available in the wordpress system by default. This features creates some new tables, i have listed them down:</p><ul><li>wp_term_taxonomy</li><li>wp_term_relationships</li><li>wp_terms</li></ul><p
style="text-align:center;"><a
title="Wordpress Tag" rel="lightbox[pics-1204159527]" href="http://gobinath.com/wp-content/uploads/2008/02/tag_wordpress.JPG"><img
class="imageframe imgaligncenter" src="http://gobinath.com/wp-content/uploads/2008/02/tag_wordpress.thumbnail.JPG" border="0" alt="Wordpress Tag" width="200" height="17" /></a></p><p>You will have an option in the create post page(<em>post-new.php</em>) for adding your tags. This option is available just below the text area.<br
/> The other notable feature is <em>plugin and core update notification</em>.<br
/> Its really cool stuff, what these guys are come up with. Usually we you many plugins to enhance our wordpress blog, but most of us are lazy to find out whether the plugin which we are using is latest one. Its not common with every one to update those plugins as soon as a new version is released. From now we don&#8217;t have that problem as we are getting a new feature in our wordpress which is nothing but plugin &amp; core updates. This particular feature will display a notification message when ever there is a update available for that plugin</p><p
style="text-align:center;"><a
title="Plugin Update" rel="lightbox[pics71]" href="http://gobinath.com/wp-content/uploads/2008/02/plugin-update.JPG"><img
class="imageframe imgaligncenter" src="http://gobinath.com/wp-content/uploads/2008/02/plugin-update.thumbnail.JPG" border="0" alt="Plugin Update" width="200" height="10" /></a></p><p>Right now i have not tested the beta release as the whole. Let me check it and update you more on features &amp; bugs.</p><p><strong>Bug Updates: </strong></p><ul><li>The only minus point is that my current theme is not compatible with wordpress 2.3 beta-1.</li><li>When you add Tag&#8217;s using the inbuilt options, they are getting store in the database, when you return to the editing mode of that particular post, nothing is showing up. <img
src="http://d3hin1y8ehrmgf.cloudfront.net/wp-includes/images/smilies/icon_sad.gif?9d7bd4" alt=':(' class='wp-smiley' /> . It needs a fix immediately</li></ul> ]]></content:encoded> <wfw:commentRss>http://www.gobinath.in/wordpress-23-beta-1-2/feed</wfw:commentRss> <slash:comments>0</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>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> <item><title>Demos</title><link>http://www.gobinath.in/demos</link> <comments>http://www.gobinath.in/demos#comments</comments> <pubDate>Sat, 15 Apr 2006 05:01:41 +0000</pubDate> <dc:creator>gobinathm</dc:creator> <category><![CDATA[PHP]]></category> <category><![CDATA[Programming]]></category><guid
isPermaLink="false">http://www.gobinath.com/2006/04/15/demos.html</guid> <description><![CDATA[I have started restoring the Demo of My class. Soon, i will try to restore all the demos]]></description> <content:encoded><![CDATA[<p>I have started restoring the Demo of My class. Soon, i will try to restore all the demos</p> ]]></content:encoded> <wfw:commentRss>http://www.gobinath.in/demos/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WordPress Theme</title><link>http://www.gobinath.in/wordpress-theme</link> <comments>http://www.gobinath.in/wordpress-theme#comments</comments> <pubDate>Thu, 13 Apr 2006 16:30:24 +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/2006/04/13/wordpress-theme.html</guid> <description><![CDATA[Till now i was wondering what is the big deal behind the creation of wordpress theme, y so much people are interested in creating new theme and donating to the Community. But now i too got that fever of creating a word press theme. I have started my works based on squible theme, which i [...]]]></description> <content:encoded><![CDATA[<p>Till now i was wondering what is the big deal behind the creation of wordpress theme, y so much people are interested in creating new theme and donating to the Community. But now i too got that fever of creating a word press theme. I have started my works based on squible theme, which i am currently using for this blog and named it as SCRABLE, but still not sure about the name i guess soon i will change the name. Interested peoples can pass there comments so that i will add those features in my theme.</p> ]]></content:encoded> <wfw:commentRss>http://www.gobinath.in/wordpress-theme/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>WinBinder</title><link>http://www.gobinath.in/winbinder</link> <comments>http://www.gobinath.in/winbinder#comments</comments> <pubDate>Wed, 12 Apr 2006 03:25:02 +0000</pubDate> <dc:creator>gobinathm</dc:creator> <category><![CDATA[PHP]]></category> <category><![CDATA[Programming]]></category> <category><![CDATA[Windows]]></category> <category><![CDATA[Microsoft]]></category><guid
isPermaLink="false">http://www.gobinath.com/2006/04/12/winbinder.html</guid> <description><![CDATA[WinBinder is a new open source extension for PHP, the script programming language. It allows PHP programmers to easily build native Windows applications. Some key benefits Large installed base of PHP programmers. No compiling and linking steps necessary: just code and run. Access to the vast range of existing PHP functions and extensions, including databases, [...]]]></description> <content:encoded><![CDATA[<p>WinBinder is a new open source extension for <a
target="_blank" href="http://www.php.net/">PHP</a>, the script programming language. It allows PHP programmers to easily build native Windows applications.</p><p><strong>Some key benefits</strong></p><ul><li>Large installed base of PHP programmers.</li><li>No compiling and linking steps necessary: just code and run.</li><li>Access to the vast range of existing PHP functions and extensions, including databases, graphics, web functions, XML, PDF, and much more.</li><li>A small set of WinBinder functions encapsulates many complex aspects of the Windows API and makes programming for Windows an easy task.</li><li>Provides 100% native Windows classes and controls.</li><li>Interfaces directly to the Window API. This means fast execution, no extra libraries and no installation required.</li><li>Supports both procedural and object-oriented programming models.</li><li>High performance, compares favorably to most scripting languages.</li><li>Produces standalone applications that can be easily installed and removed with no reboot.</li><li>Small footprint. A simple Windows application, complete with the PHP runtime and SQLite extension, is smaller than 700 kB (zipped).</li><li>A database-independent framework allows easy coding (no SQL knowledge is necessary) and smooth integration with the WinBinder code.</li><li>No database server required if using SQLite.</li><li>Does not need to use to the Windows registry, but may use it if necessary.</li><li><a
href="http://www.hypervisual.com/winbinder/overview.php">More&#8230;</a></li></ul> ]]></content:encoded> <wfw:commentRss>http://www.gobinath.in/winbinder/feed</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Served from: www.gobinath.in @ 2012-02-05 06:10:13 by W3 Total Cache -->
