<?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>KAPISH::Blog &#187; PHP</title>
	<atom:link href="http://www.jayminkapish.com/category/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jayminkapish.com</link>
	<description>About Me and Wordpress</description>
	<lastBuildDate>Wed, 14 Jul 2010 18:51:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=3.0-alpha</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Parent Child Theme &#8211; Easiest Way!</title>
		<link>http://www.jayminkapish.com/2009/08/07/parent-child-theme-easiest-way/</link>
		<comments>http://www.jayminkapish.com/2009/08/07/parent-child-theme-easiest-way/#comments</comments>
		<pubDate>Sat, 08 Aug 2009 01:46:10 +0000</pubDate>
		<dc:creator>Jaymin Patel</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[inherited themes]]></category>
		<category><![CDATA[parent child themes]]></category>
		<category><![CDATA[Wordpress MU 2.6.5]]></category>
		<category><![CDATA[wordpress parent child theme]]></category>

		<guid isPermaLink="false">http://blog.kapish.co.in/?p=114</guid>
		<description><![CDATA[This solution will work for you if you want your child theme have fewer templates and if any template is missing, it should not break your blog but should go to parent theme and load it.]]></description>
			<content:encoded><![CDATA[<p>This solution will work for you if you want your child theme have fewer templates and if any template is missing, it should not break your blog but should go to parent theme and load it.</p>
<p>And a few important things to set,<br />
1) parent theme folder name<br />
2) child theme folder name<br />
3) Template set in child theme style.css must match parent theme folder name</p>
<p>Because child theme name and Template set in child theme style.css are stored in options table.<br />
<span id="more-114"></span><br />
So I started looking into wordpress core files</p>
<div class="phpcode"><code> wp-includes/template-loader.php<br />
wp-includes/theme.php<br />
</code></div>
<p>These files load templates from active theme on your blog.</p>
<p><strong>What parent theme must have</strong><br />
Your parent theme must have all template files necessary for any typical wordpress theme and parent <strong>style.css</strong> must have these lines</p>
<div class="phpcode"><code>/*<br />
Theme Name: Parent Theme<br />
Theme URI: Your Blog URL<br />
Description: My Parent Theme<br />
Version: 0.1<br />
Author: Your Name<br />
Author URI: mailto:your_email_goes_here<br />
*/<br />
</code></div>
<p><strong>What child theme must have</strong></p>
<p><strong>style.css</strong> must have these lines where <strong>my_child_theme</strong> must be the name of child theme folder and <strong>my_parent_theme</strong> must be the name of parent theme folder.</p>
<div class="phpcode"><code>/*<br />
Theme Name: my_child_theme<br />
Theme URI: Your Blog URL<br />
Description: My Child Theme<br />
Version: 0.1<br />
Author: Your Name<br />
Author URI: mailto:your_email_goes_here<br />
Template: my_parent_theme<br />
*/<br />
</code></div>
<p>and <strong>screenshot.png</strong> and <strong>functions.php</strong></p>
<p>functions.php should add_filter to &#8216;home_template&#8217;</p>
<div class="phpcode"><code>add_filter('home_template', 'load_child_home_template');<br />
</code></div>
<p>I am going to take home/index template as an example here. Lets say child theme is having these files. What does this mean? This means you want index.php/home.php loaded from child theme and everything else should come from parent theme.<br />
1) style.css<br />
2) screenshot.png<br />
3) index.php or home.php<br />
4) functions.php</p>
<p>wp-includes/theme.php has</p>
<div class="phpcode"><code>function get_home_template() {<br />
$template = '';<br />
if ( file_exists(TEMPLATEPATH . "/home.php") )<br />
$template = TEMPLATEPATH . "/home.php";<br />
elseif ( file_exists(TEMPLATEPATH . "/index.php") )<br />
$template = TEMPLATEPATH . "/index.php";<br />
return apply_filters('home_template', $template);<br />
}</p>
<p></code></div>
<p>Wordpress applies filters at the end and we are going to take advantage of it.</p>
<p>child theme functions.php must have this function as well</p>
<div class="phpcode"><code>function load_child_home_template($template) {<br />
if(empty($template)) {<br />
$template = 'index.php'; /* if you have home.php, replace index.php with home.php */<br />
}<br />
return check_child_template($template);<br />
}<br />
function check_child_template($template) {<br />
$template_file_name = basename($template);<br />
$template_option = get_option('template'); /* has 'my_parent_theme' */<br />
$current_theme_option = get_option('current_theme'); /* has 'my_child_theme' */<br />
$theme_root = get_theme_root();<br />
$child_template_root = $theme_root . '/' . $current_theme_option;<br />
$child_template = $child_template_root . '/' . $template_file_name;<br />
$parent_template_root = $theme_root . '/' . $template_option;<br />
$parent_template = $parent_template_root . '/' . $template_file_name;<br />
if(file_exists($child_template)) {<br />
return $child_template; /* if child theme has index.php/home.php, load it */<br />
}<br />
else if(file_exists($parent_template)) { /* if child is missing index.php/home.php, load index.php/home.php from parent */<br />
return $parent_template;<br />
}<br />
return $template;<br />
}</p>
<p></code></div>
<p>You may want to put some html comments in parent theme index.php/home.php and child theme index.php/home.php to debug which theme is serving home page by looking into source code.</p>
<p>More on themes on <a href="http://codex.wordpress.org/Using_Themes#Creating_Themes">Wordpress Codex</a></p>
<h3>Related Posts</h3><ul class="related_post"><li><a href="http://www.jayminkapish.com/2009/12/08/secure-your-wordpress-installation/" title="Secure Your Wordpress Installation">Secure Your Wordpress Installation (2)</a></li><li><a href="http://www.jayminkapish.com/2009/10/08/wordpress-mu-site-upgrade-bug-your-server-may-not-be-able-to-connect-to-blogs-running-on-it/" title="Wordpress MU Site Upgrade Bug: Your server may not be able to connect to blogs running on it">Wordpress MU Site Upgrade Bug: Your server may not be able to connect to blogs running on it (3)</a></li><li><a href="http://www.jayminkapish.com/2009/03/17/json-and-wordpress/" title="JSON and Wordpress">JSON and Wordpress (6)</a></li><li><a href="http://www.jayminkapish.com/2008/06/13/comments-pagination-wordpress/" title="Comments Pagination &#8211; Wordpress &#8211; Bug Fixed!">Comments Pagination &#8211; Wordpress &#8211; Bug Fixed! (19)</a></li><li><a href="http://www.jayminkapish.com/2008/04/16/google-shared-items-in-posts/" title="Google Shared Items in post using shortcode">Google Shared Items in post using shortcode (0)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jayminkapish.com/2009/08/07/parent-child-theme-easiest-way/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla or Wordpress?</title>
		<link>http://www.jayminkapish.com/2008/03/06/joomla-or-wordpress/</link>
		<comments>http://www.jayminkapish.com/2008/03/06/joomla-or-wordpress/#comments</comments>
		<pubDate>Thu, 06 Mar 2008 16:55:38 +0000</pubDate>
		<dc:creator>Jaymin Patel</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[asides]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[open-source-software]]></category>

		<guid isPermaLink="false">http://blog.kapish.co.in/2008/03/06/joomla-or-wordpress/</guid>
		<description><![CDATA[Joomla is primed to be the next favorite Open Source Software or you think Wordpress can be?]]></description>
			<content:encoded><![CDATA[<p>Joomla is primed to be the next favorite <span id="lw_1204822668_0" class="yshortcuts">Open Source Software</span>, or that it already is? <a href="http://wordpressgarage.com/news-views/google-trends-wordpress-movable-type-joomla/">More on WordpressGarage.com</a></p>
<h3>Related Posts</h3><ul class="related_post"><li><a href="http://www.jayminkapish.com/2009/12/08/secure-your-wordpress-installation/" title="Secure Your Wordpress Installation">Secure Your Wordpress Installation (2)</a></li><li><a href="http://www.jayminkapish.com/2009/10/08/wordpress-mu-site-upgrade-bug-your-server-may-not-be-able-to-connect-to-blogs-running-on-it/" title="Wordpress MU Site Upgrade Bug: Your server may not be able to connect to blogs running on it">Wordpress MU Site Upgrade Bug: Your server may not be able to connect to blogs running on it (3)</a></li><li><a href="http://www.jayminkapish.com/2009/08/07/parent-child-theme-easiest-way/" title="Parent Child Theme &#8211; Easiest Way!">Parent Child Theme &#8211; Easiest Way! (0)</a></li><li><a href="http://www.jayminkapish.com/2009/03/17/json-and-wordpress/" title="JSON and Wordpress">JSON and Wordpress (6)</a></li><li><a href="http://www.jayminkapish.com/2008/06/13/comments-pagination-wordpress/" title="Comments Pagination &#8211; Wordpress &#8211; Bug Fixed!">Comments Pagination &#8211; Wordpress &#8211; Bug Fixed! (19)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jayminkapish.com/2008/03/06/joomla-or-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Migrate Tags from UTW Tags to Wordpress 2.3 Terms</title>
		<link>http://www.jayminkapish.com/2008/02/07/migrate-from-utw-tags-to-wordpress-23-terms/</link>
		<comments>http://www.jayminkapish.com/2008/02/07/migrate-from-utw-tags-to-wordpress-23-terms/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 16:45:36 +0000</pubDate>
		<dc:creator>Jaymin Patel</dc:creator>
				<category><![CDATA[KAPISH]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[php code]]></category>
		<category><![CDATA[slug]]></category>
		<category><![CDATA[ultimate tag warrior plugin]]></category>
		<category><![CDATA[ultimate tag warrior tags tables]]></category>
		<category><![CDATA[ultimate warrior]]></category>
		<category><![CDATA[UTW]]></category>
		<category><![CDATA[wordpress 2.3]]></category>
		<category><![CDATA[wordpress tags]]></category>
		<category><![CDATA[wordpress terms tables]]></category>

		<guid isPermaLink="false">http://blog.kapish.co.in/2008/02/07/migrate-from-utw-tags-to-wordpress-23-terms/</guid>
		<description><![CDATA[Migrating tags from Ultimate Tag Warrior or UTW plugin to Wordpress Terms.]]></description>
			<content:encoded><![CDATA[<p>I was running wordpress 2.0.5 since 2 years and did not get time to upgrade to <span id="lw_1202402549_0" class="yshortcuts">Wordpress</span> 2.3.</p>
<p>So I decided last week to upgrade to Wordpress 2.3 and I did. I upgrade the same way how wordpress advice us <a href="http://codex.wordpress.org/Upgrading_WordPress">here</a>.</p>
<p>After installation, I did notice it has migrated my categories tables to wordpress 2.3 Terms tables but nothing migrated from Tags tables. I was surprised! Did I make any mistake? Then it comes into my mind, it is Ultimate Tag Warrior plugin, which has created those tables for me not Wordpress.</p>
<p>Now I had to migrate those tags from Tags table to Terms tables. So I wrote a script that does that job for me. I thought let me make that available to you, if someone would like to extend the script and build a smart plugin! <span id="more-22"></span></p>
<p>I would like you to read this before you use this script:</p>
<ol>
<li>Take backup of your database. It is not going to delete anything in the database though.</li>
<li>Make sure you have Tags tables from Ultimate Tag Warrior in your database.</li>
<li>Since Unique index created on slug column in Terms table, this script will add &#8216;2&#8242; add the end of tag if any duplicate key/slug found in the Terms table.</li>
<li>Set MySQL Connection parameters in this file.</li>
<li>Upload it to your server and run it. Just run it once!</li>
<li>Do no forget to share your feedback via comments!</li>
</ol>
<p>If you would like to look at it and review/install, <a href="http://blog.kapish.co.in/wp-content/uploads/2008/02/post2tagTotaxonomy.zip">please download PHP Code here</a>.</p>
<h3>Related Posts</h3><ul class="related_post"><li><a href="http://www.jayminkapish.com/2008/06/13/comments-pagination-wordpress/" title="Comments Pagination &#8211; Wordpress &#8211; Bug Fixed!">Comments Pagination &#8211; Wordpress &#8211; Bug Fixed! (19)</a></li><li><a href="http://www.jayminkapish.com/2009/12/08/secure-your-wordpress-installation/" title="Secure Your Wordpress Installation">Secure Your Wordpress Installation (2)</a></li><li><a href="http://www.jayminkapish.com/2009/10/08/wordpress-mu-site-upgrade-bug-your-server-may-not-be-able-to-connect-to-blogs-running-on-it/" title="Wordpress MU Site Upgrade Bug: Your server may not be able to connect to blogs running on it">Wordpress MU Site Upgrade Bug: Your server may not be able to connect to blogs running on it (3)</a></li><li><a href="http://www.jayminkapish.com/2009/08/07/parent-child-theme-easiest-way/" title="Parent Child Theme &#8211; Easiest Way!">Parent Child Theme &#8211; Easiest Way! (0)</a></li><li><a href="http://www.jayminkapish.com/2009/03/17/json-and-wordpress/" title="JSON and Wordpress">JSON and Wordpress (6)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jayminkapish.com/2008/02/07/migrate-from-utw-tags-to-wordpress-23-terms/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Wordpress Database Schema</title>
		<link>http://www.jayminkapish.com/2008/01/18/wordpress-database-schema/</link>
		<comments>http://www.jayminkapish.com/2008/01/18/wordpress-database-schema/#comments</comments>
		<pubDate>Fri, 18 Jan 2008 18:29:20 +0000</pubDate>
		<dc:creator>Jaymin Patel</dc:creator>
				<category><![CDATA[KAPISH]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[database schema]]></category>
		<category><![CDATA[png]]></category>
		<category><![CDATA[wordpress 2.7]]></category>
		<category><![CDATA[wordpress 2.7 database schema]]></category>
		<category><![CDATA[wordpress database schema]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://blog.kapish.co.in/2008/01/18/wordpress-database-schema/</guid>
		<description><![CDATA[Tired of searching Wordpress Database Schema on Internet? Your search has ended now.]]></description>
			<content:encoded><![CDATA[<p>Wordpress 3.0 Database Schema is up on <a title="Wordpress Database Schema/Diagram" href="http://codex.wordpress.org/Database_Description" target="_blank">Wordpress site</a>.</p>
<p>Take a look at the following older versions.</p>
<ul>
<li><span style="color: #ff0000;"><strong>New</strong></span> <a title="Wordpress 2.7 Database Schema PNG" href="http://blog.kapish.co.in/wp-content/uploads/2009/03/wp_2.7.png" target="_blank">Wordpress 2.7 Database Schema PNG</a></li>
<li><a title="Wordpress 2.0.5 Database Schema PNG" href="http://blog.kapish.co.in/wp-content/uploads/2008/01/wp_db.png" target="_blank">Wordpress 2.0.5 Database Schema PNG</a></li>
<li><a title="Wordpress 2.3 Database Schema PNG" href="http://blog.kapish.co.in/wp-content/uploads/2008/01/wp23_db.png" target="_blank">Wordpress 2.3 Database Schema PNG</a></li>
</ul>
<h3>Related Posts</h3><ul class="related_post"><li><a href="http://www.jayminkapish.com/2009/12/08/secure-your-wordpress-installation/" title="Secure Your Wordpress Installation">Secure Your Wordpress Installation (2)</a></li><li><a href="http://www.jayminkapish.com/2009/10/08/wordpress-mu-site-upgrade-bug-your-server-may-not-be-able-to-connect-to-blogs-running-on-it/" title="Wordpress MU Site Upgrade Bug: Your server may not be able to connect to blogs running on it">Wordpress MU Site Upgrade Bug: Your server may not be able to connect to blogs running on it (3)</a></li><li><a href="http://www.jayminkapish.com/2009/08/07/parent-child-theme-easiest-way/" title="Parent Child Theme &#8211; Easiest Way!">Parent Child Theme &#8211; Easiest Way! (0)</a></li><li><a href="http://www.jayminkapish.com/2009/03/17/json-and-wordpress/" title="JSON and Wordpress">JSON and Wordpress (6)</a></li><li><a href="http://www.jayminkapish.com/2008/06/13/comments-pagination-wordpress/" title="Comments Pagination &#8211; Wordpress &#8211; Bug Fixed!">Comments Pagination &#8211; Wordpress &#8211; Bug Fixed! (19)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jayminkapish.com/2008/01/18/wordpress-database-schema/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Yahoo! Shortcuts Plugin</title>
		<link>http://www.jayminkapish.com/2007/12/26/yahoo-shortcuts-plugin/</link>
		<comments>http://www.jayminkapish.com/2007/12/26/yahoo-shortcuts-plugin/#comments</comments>
		<pubDate>Wed, 26 Dec 2007 21:59:26 +0000</pubDate>
		<dc:creator>Jaymin Patel</dc:creator>
				<category><![CDATA[KAPISH]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Yahoo!]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[relevant content]]></category>
		<category><![CDATA[yahoo maps]]></category>
		<category><![CDATA[yahoo shortcuts]]></category>

		<guid isPermaLink="false">http://blog.kapish.co.in/2007/12/26/yahoo-shortcuts-plugin/</guid>
		<description><![CDATA[Yahoo! Shortcuts plugin for Wordpress is cool. It makes posts rich with Yahoo! Maps, Flickr, finds relevant content and more.

How it works!
Quick Demo
Download Plugin

Related PostsMicrosoft&#039;s bid for Yahoo! good for PHP? (2)Letters a, b, c &#38; d (0)Web proxy for cross-domain AJAX Calls (0)]]></description>
			<content:encoded><![CDATA[<p><a href="http://shortcuts.yahoo.com/">Yahoo! Shortcuts</a> plugin for <span class="yshortcuts" id="lw_1198706220_0">Wordpress</span> is cool. It makes posts rich with <span class="yshortcuts" id="lw_1198706220_1">Yahoo! Maps</span>, <span class="yshortcuts" id="lw_1198706220_2">Flickr</span>, finds relevant content and more.</p>
<ul>
<li><a href="http://shortcuts.yahoo.com/how-it-works.html" target="_blank">How it works!</a></li>
<li><a href="http://fe.shortcuts.search.yahoo.com/wordpress/tutorial.html" target="_blank">Quick Demo</a></li>
<li><a href="http://wordpress.org/extend/plugins/yahoo-shortcuts/" target="_blank">Download Plugin</a></li>
</ul>
<h3>Related Posts</h3><ul class="related_post"><li><a href="http://www.jayminkapish.com/2008/02/01/microsofts-bid-for-yahoo-good-for-php/" title="Microsoft&#039;s bid for Yahoo! good for PHP?">Microsoft&#039;s bid for Yahoo! good for PHP? (2)</a></li><li><a href="http://www.jayminkapish.com/2008/01/21/letters-a-b-c-d/" title="Letters a, b, c &amp; d">Letters a, b, c &amp; d (0)</a></li><li><a href="http://www.jayminkapish.com/2007/12/26/web-proxy-for-cross-domain-ajax-calls/" title="Web proxy for cross-domain AJAX Calls">Web proxy for cross-domain AJAX Calls (0)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jayminkapish.com/2007/12/26/yahoo-shortcuts-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web proxy for cross-domain AJAX Calls</title>
		<link>http://www.jayminkapish.com/2007/12/26/web-proxy-for-cross-domain-ajax-calls/</link>
		<comments>http://www.jayminkapish.com/2007/12/26/web-proxy-for-cross-domain-ajax-calls/#comments</comments>
		<pubDate>Wed, 26 Dec 2007 21:43:02 +0000</pubDate>
		<dc:creator>Jaymin Patel</dc:creator>
				<category><![CDATA[KAPISH]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Yahoo!]]></category>
		<category><![CDATA[asides]]></category>
		<category><![CDATA[client web]]></category>
		<category><![CDATA[developer network]]></category>
		<category><![CDATA[network connections]]></category>
		<category><![CDATA[possible solutions]]></category>
		<category><![CDATA[web applications]]></category>
		<category><![CDATA[web browsers]]></category>

		<guid isPermaLink="false">http://blog.kapish.co.in/2007/12/26/web-proxy-for-cross-domain-ajax-calls/</guid>
		<description><![CDATA[Writing client web applications that use XMLHttpRequest (also known as the XMLHTTP object in Internet Explorer) object can be tricky given restrictions imposed by web browsers on network connections across domains. This article on Yahoo Developer Network describes the issue in simple, easy to understand language and provides couple of possible solutions. More on Yahoo [...]]]></description>
			<content:encoded><![CDATA[<p>Writing client web applications that use XMLHttpRequest (also known as the XMLHTTP object in Internet Explorer) object can be tricky given restrictions imposed by web browsers on network connections across domains. This article on <span class="yshortcuts" id="lw_1198705356_0">Yahoo Developer Network</span> describes the issue in simple, easy to understand language and provides couple of possible solutions. <a href="http://developer.yahoo.com/javascript/howto-proxy.html">More on Yahoo Dev Network</a></p>
<h3>Related Posts</h3><ul class="related_post"><li><a href="http://www.jayminkapish.com/2008/02/01/microsofts-bid-for-yahoo-good-for-php/" title="Microsoft&#039;s bid for Yahoo! good for PHP?">Microsoft&#039;s bid for Yahoo! good for PHP? (2)</a></li><li><a href="http://www.jayminkapish.com/2008/01/21/letters-a-b-c-d/" title="Letters a, b, c &amp; d">Letters a, b, c &amp; d (0)</a></li><li><a href="http://www.jayminkapish.com/2007/12/26/yahoo-shortcuts-plugin/" title="Yahoo! Shortcuts Plugin">Yahoo! Shortcuts Plugin (0)</a></li><li><a href="http://www.jayminkapish.com/2007/12/19/desktop-windows-applications-in-php/" title="Desktop (windows) Applications in PHP">Desktop (windows) Applications in PHP (0)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jayminkapish.com/2007/12/26/web-proxy-for-cross-domain-ajax-calls/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Desktop (windows) Applications in PHP</title>
		<link>http://www.jayminkapish.com/2007/12/19/desktop-windows-applications-in-php/</link>
		<comments>http://www.jayminkapish.com/2007/12/19/desktop-windows-applications-in-php/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 17:34:00 +0000</pubDate>
		<dc:creator>Jaymin Patel</dc:creator>
				<category><![CDATA[KAPISH]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[asides]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[applications web]]></category>
		<category><![CDATA[desktop-applications]]></category>
		<category><![CDATA[execution]]></category>
		<category><![CDATA[gtk]]></category>
		<category><![CDATA[platforms]]></category>
		<category><![CDATA[web applications]]></category>
		<category><![CDATA[web browser]]></category>
		<category><![CDATA[web pages]]></category>
		<category><![CDATA[web server]]></category>
		<category><![CDATA[zend developer zone]]></category>
		<category><![CDATA[zend-devzone]]></category>

		<guid isPermaLink="false">http://blog.kapish.co.in/2007/12/19/desktop-windows-applications-in-php/</guid>
		<description><![CDATA[We create web-applications using PHP, now we can also develop Desktop Applications with PHP-GTK. We all know that Desktop Applications are the one which does not need either a Web Server like Apache or a web browser for their execution. And this is the reason why Java is so popular because it can be used [...]]]></description>
			<content:encoded><![CDATA[<p>We create web-applications using PHP, now we can also develop Desktop Applications with <a href="http://gtk.php.net/">PHP-GTK</a>. We all know that Desktop Applications are the one which does not need either a Web Server like Apache or a web browser for their execution. And this is the reason why Java is so popular because it can be used to build applications, web pages, applets and more that can run on several platforms including Windows, Linux. <a href="http://devzone.zend.com/article/2654-Developing-Desktop-Applications-in-PHP-for-Beginners.">More On Zend Developer Zone</a></p>
<h3>Related Posts</h3><ul class="related_post"><li><a href="http://www.jayminkapish.com/2007/12/26/web-proxy-for-cross-domain-ajax-calls/" title="Web proxy for cross-domain AJAX Calls">Web proxy for cross-domain AJAX Calls (0)</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.jayminkapish.com/2007/12/19/desktop-windows-applications-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Served from: www.jayminkapish.com @ 2010-07-30 06:25:22 by W3 Total Cache -->