<?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>Amphee Web Tech Pvt. Ltd. &#187; php development</title>
	<atom:link href="http://blog.amphee.com/index.php/category/web-development/php-development/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.amphee.com</link>
	<description></description>
	<lastBuildDate>Wed, 04 May 2011 05:34:03 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		
	
	<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
	<div  style="padding:3px; display: block; margin-left: auto; margin-right: auto; text-align: center;"><!-- Ad number: 1 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-0687753067406098"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel =""; google_color_border = "A6C9E2";
		google_color_link = "FF3019"; google_color_bg = "FFFFFF";
		google_color_text = "000000"; google_color_url = "7EB544";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>Speed Up Your Website With PHP Buffer Flushing</title>
		<link>http://blog.amphee.com/index.php/2011/01/24/speed-up-your-website-with-php-buffer-flushing/</link>
		<comments>http://blog.amphee.com/index.php/2011/01/24/speed-up-your-website-with-php-buffer-flushing/#comments</comments>
		<pubDate>Mon, 24 Jan 2011 07:02:04 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[php development]]></category>
		<category><![CDATA[flush()]]></category>
		<category><![CDATA[php buffer flushing]]></category>
		<category><![CDATA[speed up your website with php]]></category>

		<guid isPermaLink="false">http://blog.amphee.com/?p=371</guid>
		<description><![CDATA[PHP output buffering is normally enabled by default. In older versions of PHP, a string would be sent to your browser every time the interpreter encountered an echo statement or text outside the PHP delimiters.
Output buffering makes this process quicker and more efficient. The buffer is essentially a big memory-resident string. When text is output, [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>PHP output buffering is normally enabled by default. In older versions of PHP, a string would be sent to your browser every time the interpreter encountered an echo statement or text outside the PHP delimiters.</p>
<p>Output buffering makes this process quicker and more efficient. The buffer is essentially a big memory-resident string. When text is output, it’s appended to the buffer rather than returned to the browser immediately. The buffer is then “flushed”, i.e. its contents are transmitted and the string is reset pending further output. Flushing occurs when:</p>
<p>1. the PHP interpreter reaches the end of the page<br />
2. the buffer exceeds the number of bytes specified within PHP’s output_buffering configuration setting, or<br />
3. the flush() or ob_flush() functions are called.</p>
<p>There are a few caveats but, assuming it works within your environment, you should consider flushing the buffer immediately after the page’s tag, e.g.</p>
<p>&lt;!DOCTYPE html PUBLIC &#8220;-//W3C//DTD XHTML 1.0 Transitional//EN&#8221; &#8220;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#8221;&gt;<br />
&lt;html xmlns=&#8221;http://www.w3.org/1999/xhtml&#8221;&gt;<br />
&lt;BODY&gt;<br />
This page is loading.&lt;br /&gt;<br />
&lt;?php flush(); sleep(2); ?&gt;<br />
Almost there&#8230;&lt;br /&gt;<br />
&lt;?php flush(); sleep(2); ?&gt;<br />
Done.&lt;br /&gt;<br />
&lt;/BODY&gt;<br />
&lt;/HTML&gt;</p>
<p>(If you’re using WordPress, you could use similar code in your theme’s header.php file.)</p>
<p>Once the browser has received the HTML head, it can begin to download all linked CSS files, favicons and other resources. These downloads can occur while the browser is idle and waiting for the main body content.</p>
<p>The speed increase will depend on the server-side processing required, the weight of your page, the quantity and size of your CSS files, and whether the browser has cached any resources. However, it’s such a simple optimization, there’s little reason not to do it.</p>
<p>I’d be interested to know whether this technique results in a perceivable speed difference on your website or application.</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2011/01/24/speed-up-your-website-with-php-buffer-flushing/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>CMS With XML Based Data Storage</title>
		<link>http://blog.amphee.com/index.php/2009/12/31/cms-with-xml-based-data-storage/</link>
		<comments>http://blog.amphee.com/index.php/2009/12/31/cms-with-xml-based-data-storage/#comments</comments>
		<pubDate>Thu, 31 Dec 2009 05:57:38 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[php development]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=155</guid>
		<description><![CDATA[OPEN SOURCE 
GetSimple is The Simplest Content Management System EVER.
GetSimple has everything your client needs, and nothing a CMS doesn&#8217;t
GetSimple is an open-source project licensed under the GNU GENERAL PUBLIC LICENSE.
GetSimple don&#8217;t use mySQL to store information, but instead depend the simplicity of XML. By utilizing XML, able stay away from introducing an extra layer [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>OPEN SOURCE <img src='http://blog.amphee.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
GetSimple is The Simplest Content Management System EVER.<br />
<span>GetSimple has everything your client needs, and nothing a CMS doesn&#8217;t</span></p>
<p>GetSimple is an open-source project licensed under the GNU GENERAL PUBLIC LICENSE.</p>
<p>GetSimple don&#8217;t use mySQL to store information, but instead depend the simplicity of XML. By utilizing XML, able stay away from introducing an extra layer of slowness and complexity associated with connecting to a mySQL database. Because GetSimple was built specifically for the small-site market, feel this is the absolutely best option for data storage.</p>
<p><a href="http://get-simple.info/">GetSimple CMS Home Page</a><br />
<a href="http://get-simple.info/start">About GetSimple CMS</a><br />
<a href="http://php.opensourcecms.com/scripts/details.php?scriptid=330&amp;name=GetSimple%20CMS">Demo</a><br />
<a href="http://get-simple.info/docs">Documentation</a></p>
<p><strong>REQUIREMENTS</strong></p>
<ul>
<li>UNIX/Linux host</li>
<li>PHP 5.1.3+</li>
<li>Apache</li>
<li><strong>No</strong> Database</li>
<li>6 minutes to spare</li>
</ul>
<p><strong>FEATURE LIST</strong></p>
<ul>
<li>XML based data storage</li>
<li>Best-in-Class User Interface</li>
<li>&#8216;Undo&#8217; protection &amp; backups</li>
<li>Easy to theme</li>
<li>Great documentation</li>
<li>Growing community</li>
</ul>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/12/31/cms-with-xml-based-data-storage/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Have a look at the new Symfony 1.3 Alpha &amp;&amp; its features</title>
		<link>http://blog.amphee.com/index.php/2009/10/24/have-a-look-at-the-new-symfony-1-3-alpha-its-features/</link>
		<comments>http://blog.amphee.com/index.php/2009/10/24/have-a-look-at-the-new-symfony-1-3-alpha-its-features/#comments</comments>
		<pubDate>Sat, 24 Oct 2009 17:04:40 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[php development]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=146</guid>
		<description><![CDATA[Here are some of the advantages of SYMFONY Framework..
*  Compatible with as many environments as possible
* Easy to install and configure
* Simple to learn
* Enterprise ready
* Convention rather than configuration, supporting fallback calls
* Simple in most cases, but still flexible enough to adapt to complex cases
* Most common web features included
* Compliant with most [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Here are some of the advantages of SYMFONY Framework..</p>
<p>*  Compatible with as many environments as possible<br />
* Easy to install and configure<br />
* Simple to learn<br />
* Enterprise ready<br />
* Convention rather than configuration, supporting fallback calls<br />
* Simple in most cases, but still flexible enough to adapt to complex cases<br />
* Most common web features included<br />
* Compliant with most of the web &#8220;bests pratices&#8221; and with web &#8220;design patterns&#8221;<br />
* Very readable code with easy maintenance<br />
* Open-Source</p>
<p>Check it out the new Alpha Symfony 1.3 with new features&#8230; <a title="Symfony 1.3" href="http://www.symfony-project.org/installation" target="_blank">SYMFONY 1.3</a></p>
<ul>
<li><strong>WHAT&#8217;S NEW IN SYMFONY 1.3</strong></li>
</ul>
<p>This <strong>alpha</strong> version will be the next stable release, is not suitable for production use. You can follow its development use by having a look at the <a title="What's New in Symfony 1.3" href="http://www.symfony-project.org/tutorial/1_3/en/whats-new" target="_blank">Whats new</a> in Symfony 1.3 even if you are willing to explore the .pdf then please <a title="What's New in Symfony 1.3 pdf" href="http://www.symfony-project.org/get/pdf/whats-new-1.3-en.pdf" target="_blank">click here</a>.</p>
<ul>
<li><strong>Upgrading projects from Symfony 1.2 to Symfony 1.3</strong></li>
</ul>
<p>To upgrade your 1.2 project to a newer version of Symfony 1.3, you will find all the steps and other information through this.. please   <a title="Upgrade your project to 1.3" href="http://www.symfony-project.org/tutorial/1_3/en/upgrade" target="_blank">Click here</a> This document describes the changes made in symfony 1.3 and what need to be done to upgrade your symfony 1.2 projects. And If you want more detailed information on what has been changed/added in symfony 1.3, you can read the <a title="What's New in Symfony 1.3" href="http://www.symfony-project.org/tutorial/1_3/en/whats-new" target="_blank">What&#8217;s new?</a> tutorial.</p>
<ul>
<li><strong>Deprecations and removals in 1.3</strong></li>
</ul>
<p>Here are some of the deprecations and removals in newer version of symfony 1.3.To find the lists of all settings, classes, methods, functions, and tasks that have been deprecated or removed in symfony 1.3 please <a title="Deprecations and removals in Symfony 1.3" href="http://www.symfony-project.org/tutorial/1_3/en/deprecated" target="_blank">Click here</a></p>
<p>You can find the installation for the symfony 1.3 here <a title="Installation for Symfony 1.3" href="http://www.symfony-project.org/installation/1_3" target="_blank">Installation</a></p>
<p>And for the first time user don&#8217;t bother here you can have basic installation <a title="First Time User Guide" href="http://www.symfony-project.org/getting-started/1_3/en/" target="_blank">Getting Started</a></p>
<p>Here are some of the important links through which you can direct download the source for Symfony 1.3</p>
<ul>
<li><a title="Download Sandbox for Symfony 1.3" href="http://www.symfony-project.org/get/sf_sandbox_1_3.tgz" target="_blank">sf_sandbox_1_3.tgz</a></li>
<li><a title="Download Sandbox for Symfony 1.3" href="http://www.symfony-project.org/get/sf_sandbox_1_3.zip" target="_blank">sf_sandbox_1_3.zip</a></li>
</ul>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/10/24/have-a-look-at-the-new-symfony-1-3-alpha-its-features/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	
	
	<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
	<div  style="padding:7px; display: block; margin-left: auto; margin-right: auto; text-align: center;"><!-- Ad number: 2 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-0687753067406098"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel =""; google_color_border = "E3FA11";
		google_color_link = "FFFFFF"; google_color_bg = "A2AB2B";
		google_color_text = "000000"; google_color_url = "FFFFFF";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>important CMS to be useful</title>
		<link>http://blog.amphee.com/index.php/2009/09/09/important-cms-to-be-useful/</link>
		<comments>http://blog.amphee.com/index.php/2009/09/09/important-cms-to-be-useful/#comments</comments>
		<pubDate>Wed, 09 Sep 2009 08:31:00 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[drupal]]></category>
		<category><![CDATA[joomla]]></category>
		<category><![CDATA[magento]]></category>
		<category><![CDATA[php development]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[content management system]]></category>
		<category><![CDATA[useful cms]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=143</guid>
		<description><![CDATA[hi, today i m going to write about CMS(content management system). hersi the list of some useful CMS
1. Drupal:
Drupal gets the top nod because of its ease of use, vast number of modules, great user, developer, and support community.
License: GPL
Programming Language: PHP
Main advantages: core CMS, Views, CCK, Organic Groups, &#38; huge library of contributed modules.
Disadvantages: [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>hi, today i m going to write about CMS(content management system). hersi the list of some useful CMS</p>
<p><strong>1. Drupal:</strong></p>
<p>Drupal gets the top nod because of its ease of use, vast number of modules, great user, developer, and support community.<br />
License: GPL<br />
Programming Language: PHP<br />
Main advantages: core CMS, Views, CCK, Organic Groups, &amp; huge library of contributed modules.<br />
Disadvantages: complex, needs more top quality themes, frequent security upgrades.<br />
Outlook: Huge potential to continue growth and expansion on this platform over time.<br />
Website: <a href="http://www.drupal.org/" target="_blank">http://www.drupal.org/</a></p>
<p><strong>2. WordPress:</strong></p>
<p>WordPress is a simple and elegant CMS, perfect for single user blogs, with a large number of themes and modules available online.<br />
License: GPL<br />
Programming Language: PHP<br />
Main advantages: Easiest CMS to use, customize, and extend.<br />
Disadvantages: Lacks many of the social networking functions, ecommerce, forums, wikis, etc. used on more expansive sites.<br />
Outlook: Best for personal publishing, huge user community, will continue to be the preferred choice of bloggers for years.<br />
Website: <a href="http://www.wordpress.org/" target="_blank">http://www.wordpress.org/</a></p>
<p><strong>3. Joomla:</strong></p>
<p>Joomla has one of the largest user communities of any CMS, everything you need and more to develop social networks, ecommerce, &amp; archive sites.<br />
License: GPL<br />
Programming Language: PHP<br />
Main advantages: Professional standards, internationalization, customization.<br />
Disadvantages: too many commercial products for Open Source development, difficult to learn.<br />
Outlook: Strong challenger for the top CMS spot, commercialization of extensions should continue to provide many income opportunities for 3rd party developers.<br />
Website: <a href="http://www.joomla.org/" target="_blank">http://www.joomla.org/</a></p>
<p><strong>4. Media Wiki:</strong></p>
<p>Media Wiki invented a whole new way of working on the web, and is a CMS for collective authoring of documents, used to power the one of the largest and most popular sites on the internet, Wikipedia.<br />
License: GPL<br />
Programming Language: PHP<br />
Main advantages: If you need a wiki, it is the best.<br />
Disadvantages: Does not include many other functions / extensions of other CMS platforms, doesn’t theme well, most sites look the same.<br />
Outlook: Follows the model to success of doing one thing extremely well, has the support of the Wikipedia Foundation, very popular authoring model.<br />
Website: <a href="http://www.mediawiki.org/">http://www.mediawiki.org/</a></p>
<p><strong>5. Liferay:</strong></p>
<p>Liferay is a popular new CMS that is great for building portals, and offers a professional look and feel that sets it apart from the other platforms.<br />
License: MIT<br />
Programming Language: Java, PHP, Ruby<br />
Main advantages: collaboration, calendars, internationalization, design.<br />
Disadvantages: More closely tied to a commercial outlook / corporate structure than most Open Source projects.<br />
Outlook: Not as well known or implemented as some of the other CMS platforms, but nice design &amp; features to set your sites apart from the crowd.<br />
Website: <a href="http://www.liferay.com/" target="_blank">http://www.liferay.com/</a></p>
<p><strong>6. TYPO3:</strong></p>
<p>One of the most complex and professional CMS platforms out of the box, TYPO3 is popular for business websites, especially with European companies.<br />
License: GNU<br />
Programming Language: PHP<br />
Main advantages: design, extensions, customizations, flexibility, professionalism.<br />
Disadvantages: too difficult to learn for most, too many proprietary conventions.<br />
Outlook: Strong CMS for web development, sure to continue with a core of specialized developers and corporate clients, but loosing support and market share to other platforms.<br />
Website: <a href="http://www.typo3.com/" target="_blank">http://www.typo3.com/</a></p>
<p><strong>7. Moodle:</strong></p>
<p>Moodle is one of the most unique CMS platforms on this list, designed specifically for Course Management and Education, and used for online learning platforms.<br />
License: GNU<br />
Programming Language: PHP<br />
Main advantages: Huge user and development community, online education, no real competitors or similar products, extremely powerful.<br />
Disadvantages: not really applicable for most web design purposes.<br />
Outlook: Look for this “Modular Object-Oriented Dynamic Learning Environment” to continue to be the standard online operating system for education and spawn many interesting mashups with other CMS platforms as well as many more modules &amp; extensions.<br />
Website: <a href="http://www.moodle.org/" target="_blank">http://www.moodle.org/</a></p>
<p><strong>8. Dolphin:</strong></p>
<p>Boonex Dolphin is popular among web designers who want the latest in social networking, with an industry standard look and all of the features of the popular online communities out of the box.<br />
License: Creative Commons<br />
Programming Language: PHP<br />
Main advantages: Plug-n-Play user community with all the bells &amp; whistles.<br />
Disadvantages: not really Open Source, must pay to remove ads, requires specific hosting requirements, difficult to install, buggy.<br />
Outlook: Look for Dolphin to continue to be a popular choice for social networking, though its “cookie cutter” design runs the risk of becoming stale with too many sites implementing the same design.<br />
Website: <a href="http://www.boonex.com/products/dolphin/" target="_blank">http://www.boonex.com/products/dolphin/</a></p>
<p><strong>9. Pligg:</strong></p>
<p>Pligg is a Digg clone that provides social bookmarking functionality for websites, allowing users to post links, vote them up or down, and leave comments.<br />
License: GPL<br />
Programming Language: PHP<br />
Main advantages: Best for Social Bookmarking, can be themed and extended to build top quality sites like Mixx, Redditt, Del.icio.us, etc.<br />
Disadvantages: difficult to install, mod rewrite problems, poor support on community boards, questionable Open Source future.<br />
Outlook: With the 1.0 release of Pligg upcoming within a couple of months, look for a big surge of use back to this platform but watch out for increased commercialization.<br />
Website: <a href="http://www.pligg.com/" target="_blank">http://www.pligg.com/</a></p>
<p><strong>10. Movable Type: </strong></p>
<p>Movable Type is the main challenger to WordPress for a personal blog platform, and supports multiple users, Themes, and Tags.<br />
License: GNU<br />
Programming Language: Perl<br />
Main advantages: Blogs<br />
Disadvantages: Too closely tied to commercial products and services compared to most Open Source communities, Perl.<br />
Outlook: Look for MT to fall off the list as other of the blogging platforms below increase in popularity, but sustain development as PR for the company’s commercial offerings.<br />
Website: <a href="http://movabletype.org/" target="_blank">http://movabletype.org/</a></p>
<p>i hope you like this details content originaly by <a href="http://webdevnews.net/2008/09/the-top-10-open-source-content-management-systems/">http://webdevnews.net/2008/09/the-top-10-open-source-content-management-systems/</a></p>
<p>from,</p>
<p>kiran vadariya</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/09/09/important-cms-to-be-useful/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>some useful wordpress plugins</title>
		<link>http://blog.amphee.com/index.php/2009/09/02/some-useful-wordpress-plugins/</link>
		<comments>http://blog.amphee.com/index.php/2009/09/02/some-useful-wordpress-plugins/#comments</comments>
		<pubDate>Wed, 02 Sep 2009 07:31:57 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[php development]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[cms plugin]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[woprdpress]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=141</guid>
		<description><![CDATA[here is the list of some useful wordpress plugins. i hope  everyone like tht
Advanced Tagline
Advanced Tagline gives the option to have multiple taglines for your blog and display them at random or sequentially with each page view.
Sodahead Polls
Want to create a poll for your readers and see live results? Bloggers use polls more than any [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>here is the list of some useful wordpress plugins. i hope  everyone like tht</p>
<p><a href="http://kmorey.net/downloads/advanced-tagline-wordpress-plugin/" target="_blank">Advanced Tagline</a></p>
<p>Advanced Tagline gives the option to have multiple taglines for your blog and display them at random or sequentially with each page view.</p>
<p><a href="http://wordpress.org/extend/plugins/sodahead-polls/" target="_blank">Sodahead Polls</a></p>
<p>Want to create a poll for your readers and see live results? Bloggers use polls more than any other interactive application to engage their readers. Create an engaging experience for your audience today and keep them coming back for more.</p>
<p><a href="http://yoast.com/wordpress/minimum-comment-length/" target="_blank">Minimum Comment Length</a></p>
<p>Don’t you find it annoying when someone comments with just a smiley? Or a “thanks”? On quite a few forums you have to leave a comment with a minimum of 15 characters to be able to comment, but WordPress doesn’t allow you to set such a threshold. With this plugin, it does.</p>
<p><a href="http://www.coolchecks.net/blog/blogging-tips/blogging-tips-plugin-for-wordpress.html" target="_blank">Blogging Tips</a></p>
<p>This plugin displays random blogging tips and suggestions. The tips are just some ideas of what you can do to improve the popularity of your blog and improve the content.  All of the tips are designed to inspire you to be a better blogger.</p>
<p><a href="http://www.zen-dreams.com/en/2008/08/06/new-wordpress-plugin-gravatar-top-commenters/" target="_blank">Gravatar Recent Comments</a></p>
<p>Gravatar recent comments is a plugin providing you with a “Top/last commenters” widget but instead of just displaying names, it also displays gravatars.</p>
<p><a href="http://builtbackwards.com/projects/tac/" target="_blank">Theme Authenticity Checker</a></p>
<p>Scan all of your theme files for potentially malicious or unwanted code. Be aware of advertisements or dangerous JavaScript inserted into legitimate themes by third party theme download sites.</p>
<p><a href="http://picandocodigo.net/programacion/wordpress/list-category-posts-wordpress-plugin-english/" target="_blank">List Category Posts</a></p>
<p>List Category Posts is a simple WordPress plugin which allows you to list some posts from a category into a post/page using [catlist=ID], where ID stands for the Category Id.</p>
<p><a href="http://www.dagondesign.com/articles/expanding-text-plugin-for-wordpress/" target="_blank">Expanding Text Plugin</a></p>
<p>This WordPress plugin allows you to create sections of text in your post or page which expand/collapse when clicked on. You simply wrap the special tags around your text, and set the ‘expand link’ (the link visitors click on to show the text).</p>
<p><a href="http://wordpress.org/extend/plugins/actionable/" target="_blank">Actionable</a></p>
<p>Actionable allows the creation of a categroized list of action items for users to check off and track. It was originally developed for Share 350.0 – a plan for regional sustainability to help people track their actions and efforts to create a sustainable community.</p>
<p><a href="http://www.23systems.net/plugins/lightbox-plus/" target="_blank">Lightbox Plus</a></p>
<p>Lightbox Plus is used to create overlay display images on the webpage and to automatically add the correct overlay links to images. Lightbox Plus captures the image title for display using a fairly robust regex to capture most character that may appear as part of the title.</p>
<p>original blog from  <a href="http://www.blogohblog.com/10-new-useful-wordpress-plugins/">http://www.blogohblog.com/10-new-useful-wordpress-plugins/</a></p>
<p>from,</p>
<p>kiran</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/09/02/some-useful-wordpress-plugins/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>symfony 1.2 features</title>
		<link>http://blog.amphee.com/index.php/2009/07/31/symfony-1-2-features/</link>
		<comments>http://blog.amphee.com/index.php/2009/07/31/symfony-1-2-features/#comments</comments>
		<pubDate>Fri, 31 Jul 2009 04:36:19 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[php development]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[download symfony1.2]]></category>
		<category><![CDATA[php dev]]></category>
		<category><![CDATA[symfony1.2]]></category>
		<category><![CDATA[symfony1.2 features]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=138</guid>
		<description><![CDATA[hi, we  all knows tht symfony 1.2 is released . today i  want to write about some symfony 1.2 features.

Features
The admin generator will be rewritten from scratch to leverage the new form framework. The main goal is to provide a more customizable and a more flexible admin generator.
The Propel plugin and the Doctrine [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>hi, we  all knows tht symfony 1.2 is released . today i  want to write about some symfony 1.2 features.<br />
<strong><br />
Features</strong><br />
The admin generator will be rewritten from scratch to leverage the new form framework. The main goal is to provide a more customizable and a more flexible admin generator.</p>
<p>The Propel plugin and the <strong>Doctrine plugin </strong>will be bundled with symfony 1.2. So, as of symfony 1.2, the core team will officially support Doctrine as a first class citizen.</p>
<p>The development of secure applications has always been quite easy with symfony thanks to the use of the ORM, the output escaper, and the CSRF protection. Symfony 1.2 will go one step further by providing native input filtering. We will base this feature on the new filter extension bundled with PHP 5.2.</p>
<p>The framework must simplify the life of the developer on repetitive and boring activities. As most applications send emails, the <strong>Swift library</strong>, one of the most feature-full and flexible solution for sending emails in PHP, will be integrated into the core.</p>
<p>The JavaScript world evolves very quickly, with lot of great frameworks available (prototype, jQuery, Dojo, mootools, and YUI). all the JavaScript stuff available into a plugin.<br />
The project:deploy task was just a proof of concept. So, it is time to start a discussion on the features we need for a proper deployment task.</p>
<p>The routing is now cached, so you can expect a significant performance boost when you got plenty of routes in your app. Also, the routing class is no more a singleton so you can now extend and reference it easily to fit your needs,</p>
<p>you can download symfony 1.1 from below given  links . <a class="wp-caption-dd" href="http://www.symfony-project.org/get/sf_sandbox_1_1.tgz"></a></p>
<p><a class="wp-caption-dd" href="http://www.symfony-project.org/get/sf_sandbox_1_1.tgz">sf_sandbox_1_1.tgz</a> <a class="wp-caption-dd" href="http://www.symfony-project.org/get/sf_sandbox_1_1.zip"></a></p>
<p><a class="wp-caption-dd" href="http://www.symfony-project.org/get/sf_sandbox_1_1.zip">sf_sandbox_1_1.zip</a></p>
<ul></ul>
<p>you can upgrade your existing symfony project into symfony1.2.</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/07/31/symfony-1-2-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Joomla! Resources Directory Launched</title>
		<link>http://blog.amphee.com/index.php/2009/07/30/joomla-resources-directory-launched/</link>
		<comments>http://blog.amphee.com/index.php/2009/07/30/joomla-resources-directory-launched/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 06:37:59 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[joomla]]></category>
		<category><![CDATA[php development]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[CMS]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[India]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web devlopment]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=132</guid>
		<description><![CDATA[In response to overwhelming interest and requests from the Joomla community, the Joomla Project is pleased to announce the Joomla Resource Directory goes online today at resources.joomla.org. If you&#8217;re a Joomla user, there&#8217;s no easier way to find developers, service providers, and other valuable resources.
&#8220;We think this will be a great way to connect end-users [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p><img style="padding:5px" src="http://www.joomla.org/images/stories/joomla_balloons.jpg" border="0" alt="Balloons" hspace="4" align="left" />In response to overwhelming interest and requests from the Joomla community, the Joomla Project is pleased to announce the Joomla Resource Directory goes online today at <a href="http://resources.joomla.org/">resources.joomla.org</a>. If you&#8217;re a Joomla user, there&#8217;s no easier way to find developers, service providers, and other valuable resources.</p>
<p>&#8220;We think this will be a great way to connect end-users and service providers in the Joomla Community,&#8221; said Wendy Robinson of the JRD Team.&#8221;Most small businesses can&#8217;t afford to advertise on the Joomla.org sites and this will provide them wide exposure. With close to a million visitors and 14 million page views a month, the JED has proven that there is wide interest in products related to Joomla.&#8221;</p>
<p>The JRD builds on the success of the JED—the most popular place to find Joomla Extensions. Both are powered by the Mosets Tree 2.1 directory extension, a GPL extension that also powers the Joomla Site Showcase.</p>
<p>If you&#8217;re a service provider, listing in the Resource Directory is free of charge (premium listings will be offered in the future for a fee). This includes consultants, template designers, tutorial sites, and just about any other Joomla service. Users can post reviews of these services and share their experiences with the community.</p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/07/30/joomla-resources-directory-launched/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	
	
	<!-- google ad injected by adsense-optimizer http://www.adsenseoptimizer.de -->
	<div  style="padding:3px; display: block; margin-left: auto; margin-right: auto; text-align: center;"><!-- Ad number: 3 --><script type="text/javascript"><!--
    	 
    	google_ad_client = "pub-0687753067406098"; google_alternate_color = "FFFFFF";
		google_ad_width = 468; google_ad_height = 60;
		google_ad_format = "468x60_as"; google_ad_type = "text_image";
		google_ad_channel =""; google_color_border = "A6C9E2";
		google_color_link = "FF3019"; google_color_bg = "FFFFFF";
		google_color_text = "000000"; google_color_url = "7EB544";
		google_ui_features = "rc:0"; //--></script>
		<script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script></div>	<item>
		<title>Drupal 6.13 and 5.19 released</title>
		<link>http://blog.amphee.com/index.php/2009/07/15/drupal-6-13-and-5-19-released/</link>
		<comments>http://blog.amphee.com/index.php/2009/07/15/drupal-6-13-and-5-19-released/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 08:55:45 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[drupal]]></category>
		<category><![CDATA[php development]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=130</guid>
		<description><![CDATA[Drupal 6.13 and 5.19, maintenance releases fixing problems reported using the bug tracking system, as well as critical security vulnerabilities, are now available for download. Both releases fix some other smaller issues as well.
Upgrading your existing Drupal 5 and 6 sites is strongly recommended. There are no new features in these releases. For more information [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p style="position: inherit;">Drupal 6.13 and 5.19, maintenance releases fixing problems reported using the bug tracking system, as well as <strong>critical security vulnerabilities</strong>, are now available for download. Both releases fix some other smaller issues as well.</p>
<p style="position: inherit;"><strong><a href="http://drupal.org/upgrade/">Upgrading</a> your existing Drupal 5 and 6 sites is strongly recommended.</strong> There are no new features in these releases. For more information about the Drupal 6.x release series, consult the <a href="http://drupal.org/drupal-6.0">Drupal 6.0 release announcement</a>, more information on the 5.x releases can be found in <a href="http://drupal.org/drupal-5.0">Drupal 5.0 release announcement</a>.</p>
<p><a href="http://"><span style="color: orange; text-decoration: underline; line-height: 1.5em;">Download Drupal 6.13</span></a><br />
<a style="color: white; text-decoration: underline; line-height: 1.5em;" href="http://ftp.drupal.org/files/projects/drupal-5.19.tar.gz"><span style="color: orange; text-decoration: underline; line-height: 1.5em;">Download Drupal 5.19</span></a></p>
<p>for more information  <a class="wp-caption-dd" href="http://drupal.org/drupal-6.13" target="_blank">http://drupal.org/drupal-6.13</a></p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/07/15/drupal-6-13-and-5-19-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now symfony with netbeans also</title>
		<link>http://blog.amphee.com/index.php/2009/07/09/now-symfony-with-netbeans-also/</link>
		<comments>http://blog.amphee.com/index.php/2009/07/09/now-symfony-with-netbeans-also/#comments</comments>
		<pubDate>Thu, 09 Jul 2009 05:47:46 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[php development]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[netbeans]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/?p=126</guid>
		<description><![CDATA[Last week, the NetBeans team announced that the next version of their IDE (6.8) will have native support for symfony! That&#8217;s a great news for all of us.  They have a dedicated page in their Wiki about symfony support in NetBeans, and the NetBeans 6.8 nightly builds already have some basic support for symfony, [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Last week, the NetBeans team announced that the next version of their IDE (6.8) will have native support for symfony! That&#8217;s a great news for all of us.  They have a dedicated page in their Wiki about symfony support in NetBeans, and the NetBeans 6.8 nightly builds already have some basic support for symfony, like the ability to run a task. To learn more, read Tomas Mysik&#8217;s blog post about what is already available.  That&#8217;s exiting, and I think we need to help them building a great IDE for symfony. I highly encourage you to download a 6.8 build, test it with your own projects, and give them feedback.<img src="http://blogs.sun.com/netbeansphp/resource/article_images/symfony3.png" alt="" width="469" height="296" /></p>
<p>content from.. <a href="http://www.symfony-project.org/blog/2009/07/08/symfony-support-in-netbeans-6-8" target="_blank">http://www.symfony-project.org/blog/2009/07/08/symfony-support-in-netbeans-6-8</a></p>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/07/09/now-symfony-with-netbeans-also/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Vote For Symfony</title>
		<link>http://blog.amphee.com/index.php/2009/07/08/vote-for-symfony/</link>
		<comments>http://blog.amphee.com/index.php/2009/07/08/vote-for-symfony/#comments</comments>
		<pubDate>Wed, 08 Jul 2009 07:01:30 +0000</pubDate>
		<dc:creator>kiran vadariya</dc:creator>
				<category><![CDATA[php development]]></category>
		<category><![CDATA[symfony]]></category>
		<category><![CDATA[web development]]></category>
		<category><![CDATA[http://sourceforge.net/community/cca09/vote/?f=392]]></category>

		<guid isPermaLink="false">http://blog.devloperworld.com/index.php/2009/07/08/vote-for-symfony/</guid>
		<description><![CDATA[You can vote! With over 47,000 nominations, the community has chosen 85 finalists in 12 categories. Take a look at our finalists and pick your favorites, or maybe even discover something useful you hadn’t heard of before. we are going to vote for symfony .
why we are going to vote for SYMFONY ?
chk this link [...]]]></description>
			<content:encoded><![CDATA[<!-- google_ad_section_start --><p>You can vote! With over 47,000 nominations, the community has chosen 85 finalists in 12 categories. Take a look at our finalists and pick your favorites, or maybe even discover something useful you hadn’t heard of before. we are going to vote for <strong>symfony</strong> .</p>
<p>why we are going to vote for <strong>SYMFONY</strong> ?</p>
<p>chk this link if you want to know about symfony <a href="http://sourceforge.net/community/cca09/vote/?f=392" target="_blank">http://www.symfony-project.org/</a></p>
<p>it show why we r going to vote symfony a best web development tool ever .</p>
<h3><strong> Vote For Symfony.  go to this link. <img src='http://blog.amphee.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong><br />
<a href="http://sourceforge.net/community/cca09/vote/?f=392" target="_blank">http://sourceforge.net/community/cca09/vote/?f=392</a><br />
</h3>
<p>from,</p>
<p>jasmin patel</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 8px; width: 1px; height: 1px;">http://www.symfony-project.org/</div>
<!-- google_ad_section_end -->]]></content:encoded>
			<wfw:commentRss>http://blog.amphee.com/index.php/2009/07/08/vote-for-symfony/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

