<?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>smartcoderszone - A Blog about Web Development Tutorials and Tips, PHP, Mysql,  Javascript, CSS, Jquery, SEO, Twitter and Facebook Scripts</title>
	<atom:link href="http://smartcoderszone.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://smartcoderszone.com</link>
	<description>Web Development Tutorials and Tips, PHP, Javascript, CSS, Joomla, Ajax, Jquery, Mysql, SEO, Twitter and Facebook Scripts</description>
	<lastBuildDate>Mon, 26 Jul 2010 05:55:17 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to install ruby on rails on windows</title>
		<link>http://smartcoderszone.com/2010/07/how-to-install-ruby-on-rails-on-windows/</link>
		<comments>http://smartcoderszone.com/2010/07/how-to-install-ruby-on-rails-on-windows/#comments</comments>
		<pubDate>Sun, 25 Jul 2010 15:08:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[RoR]]></category>
		<category><![CDATA[download and install ruby on rails on windows]]></category>
		<category><![CDATA[how to configure rails for mysql]]></category>
		<category><![CDATA[how to configure rails for sqlite3]]></category>
		<category><![CDATA[how to display default first project in ror]]></category>
		<category><![CDATA[how to install ror on localhost on windows]]></category>
		<category><![CDATA[How to install ruby on rails on windows]]></category>
		<category><![CDATA[how to setup ruby on rails on windows]]></category>
		<category><![CDATA[Install ruby on rails with mysql]]></category>

		<guid isPermaLink="false">http://smartcoderszone.com/?p=147</guid>
		<description><![CDATA[In the previous post of RoR, we have studied about what is ruby on rails. In
this post we will see, how to install ruby on rails on localhost on windows machine.
Following are the steps required for ror installation -
1. Install Ruby &#38; Gems
2. Install Rails
3. Install appropriate Database Engine
That&#8217;s it.
Lets see each installation in detail.
1.  [...]]]></description>
			<content:encoded><![CDATA[<p>In the previous post of RoR, we have studied about what is ruby on rails. In</p>
<div id="attachment_149" class="wp-caption alignright" style="width: 160px"><a href="http://smartcoderszone.com/wp-content/uploads/2010/07/images.jpg"><img class="size-thumbnail wp-image-149" title="Ruby on Rails" src="http://smartcoderszone.com/wp-content/uploads/2010/07/images-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Ruby on Rails</p></div>
<p>this post we will see, how to install ruby on rails on localhost on windows machine.</p>
<p>Following are the steps required for ror installation -</p>
<p>1. Install Ruby &amp; Gems</p>
<p>2. Install Rails</p>
<p>3. Install appropriate Database Engine</p>
<p>That&#8217;s it.</p>
<p>Lets see each installation in detail.</p>
<p><strong>1.  Install Ruby:</strong> You need to download latest version of Ruby installer. For windows there is an RubyInstaller.exe file and for linux chm file is also available to download.</p>
<p>Click on the download Link -</p>
<h2><a href="http://rubyforge.org/frs/?group_id=167" target="_blank">Download</a></h2>
<p>This will install Ruby under C:\ruby, and install RubyGems for you. The README at the end of the installation will show you all the versions of each piece that it installed.</p>
<p>Now you can check to see that c:\ruby\bin is in your PATH by typing “path” at a command prompt. This will ensure that you can run ruby.exe from anywhere (which you&#8217;ll need to run from your project root).</p>
<p><strong>2. Install Rails: </strong>Rails installation is easy and simple. Rails provide gems that can be direct install from command prompt.</p>
<pre class="brush: ruby;">
C:\&gt;gem install rails
</pre>
<p>Rails installation takes some time. After few min you can see this message on your command prompt.</p>
<p>&#8220;Successfully installed rails-2.3.8&#8243;</p>
<p>This will install all the code, test code, ri documentation, and RDoc documentation for Rails.</p>
<p><strong>3. Install Database Engine: </strong></p>
<p>Rails is completely DB-agnostic, it supports SQLite and MySQL both. We&#8217;ll see how to install two of the more popular Database Engines:  SQLite and MySQL.</p>
<p>SQLite is the default database type that Rails looks for.</p>
<p>Installation of  SQLite3 -</p>
<p>You need two files from the  <a title="http://www.sqlite.org/download.html" rel="nofollow" href="http://www.sqlite.org/download.html" target="_blank">SQLite download page</a>:</p>
<p>1.  <a title="http://www.sqlite.org/sqlite-3_6_10.zip" rel="nofollow" href="http://www.sqlite.org/sqlite-3_6_10.zip" target="_blank">SQLite Command Line Tool</a><br />
2. <a title="http://www.sqlite.org/sqlitedll-3_6_10.zip" rel="nofollow" href="http://www.sqlite.org/sqlitedll-3_6_10.zip" target="_blank">SQLite DLL</a></p>
<p>Unzip them and put the three extracted files in your ruby\bin directory (usually at C:\ruby\bin). Now install the sqlite3-ruby gem:</p>
<pre class="brush: ruby;">
C:\&gt;gem install sqlite3-ruby -v 1.2.3
</pre>
<p>Installation of MySQL -</p>
<p>Download <a title="http://dev.mysql.com/downloads/mysql/5.1.html#downloads" rel="nofollow" href="http://dev.mysql.com/downloads/mysql/5.1.html#downloads" target="_blank">MySQL Community Server</a> and install it. If you also do PHP programming, check out WAMP for an easy installation as well.</p>
<p>To use MySQL in Rails versions greater than 2.1, you&#8217;ll also need the MySQL adapter:</p>
<pre class="brush: ruby;">
C:\&gt; gem install mysql
</pre>
<p>Since mysql is not a default database setup in rails so we need to change in database.yml file.<br />
<strong><br />
Create First Application :</strong><br />
Its quite easy to setup. Type following in command prompt.</p>
<pre class="brush: ruby;">
C:\&gt; rails myappname
</pre>
<p>This will build a directory, in which it will build the entire blank Rails project skeleton. To see your fresh project in action, navigate to your project root and run script\server:</p>
<pre class="brush: ruby;">
C:\&gt; cd myappname
C:\&gt; ruby script\server
</pre>
<p>Then, navigate to http://localhost:3000/ in your browser, and you should see the default Rails “Welcome Aboard” page.</p>
<p>Rails uses the SQLite3 adapter and creates the DB in the db directory. If you look at your database.yml file (in \config), you&#8217;ll see a database entry for your development, test, and production databases.</p>
<pre class="brush: ruby;">
development:
 adapter: mysql
 encoding: utf8
 reconnect: false
 database: ruby
 pool: 5
 username: root
 password:
 host: localhost
</pre>
<p>Set to mysql if you are using mysql database.</p>
<p>This was the complete installation of ruby on rails on windows.  RoR is not difficult language, its tricky. Hope this tutorial steps help you in ror installation.</p>
<p>Cheers <img src='http://smartcoderszone.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://smartcoderszone.com/2010/07/how-to-install-ruby-on-rails-on-windows/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to implement multi-level menu in wordpress</title>
		<link>http://smartcoderszone.com/2010/07/how-to-implement-multi-level-menu-in-wordpress/</link>
		<comments>http://smartcoderszone.com/2010/07/how-to-implement-multi-level-menu-in-wordpress/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 15:53:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[free download multi-level menu plugin for wordpress]]></category>
		<category><![CDATA[How to implement multi-level menu in wordpress]]></category>
		<category><![CDATA[how to manage wordpress categories in one menu item]]></category>

		<guid isPermaLink="false">http://smartcoderszone.com/?p=142</guid>
		<description><![CDATA[Sometimes while writing continues posts in various categories we found that we do not have enough space for more categories. In that case we have an option of adding one more menu in our wordpress theme so that we can manage other categories but this would not be a good idea to add several menu [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes while writing continues posts in various categories we found that we do not have enough space for more categories. In that case we have an option of adding one more menu in our wordpress theme so that we can manage other categories but this would not be a good idea to add several menu on your wordpress theme. If your requirement needs more than one menu for different setup or for another requirement, you can refer to my previous post <a href="http://smartcoderszone.com/2010/07/how-to-add-multiple-menu-in-wordpress/" target="_blank">How to add multiple menu in wordpress</a>.</p>
<p>Here we will learn how to implement multi-level menu in wordpress so that we can combine our several categories in one place. This results more space and all our content is managed.</p>
<p>Wordpress provides very simple and easy to implement plugin called &#8211; Multi-level Navigation Plugin. This plugin allow us to manage menu with lots of options including display format, number of item to display and their order.</p>
<p><strong>Features</strong></p>
<p>The plugin produces W3C valid XHTML and CSS. The options page allows you to choose from a range of options including:</p>
<p>* What content will be displayed in the menu<br />
* Animation speed (how fast the dropdowns appear)<br />
* Mouseover delay<br />
* Hide delay<br />
* Add a second menu<br />
* Hover sensitivity<br />
* Keyboard accessibility</p>
<p><strong>Installation </strong></p>
<p>1. Upload the complete multi-level-navigation-plugin folder to the /wp-content/plugins/ directory<br />
2. Activate the plugin through the &#8216;Plugins&#8217; menu in WordPress<br />
3. Add following code in your header.php (where you want to display your menu).</p>
<pre class="brush: php;">
&lt;?php
if (function_exists('pixopoint_menu')) {pixopoint_menu();}
?&gt;
</pre>
<p>4. Visit the &#8220;Multi-level Navigation&#8221; page in your WordPress options menu</p>
<p>For more information, help and support, you can visit <a href="http://pixopoint.com/products/multi-level-navigation/" target="_blank">pixopoint</a>.</p>
<p>You can download plugin from here.</p>
<h2><a href="http://wordpress.org/extend/plugins/multi-level-navigation-plugin/" target="_blank">Download</a></h2>
<p>Hope this multi-level menu tutorial help you to manage your blog categories easily.</p>
<p>Source : wordpress.org</p>
]]></content:encoded>
			<wfw:commentRss>http://smartcoderszone.com/2010/07/how-to-implement-multi-level-menu-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Download wordpress 3d rotate flash tag cloud plugin</title>
		<link>http://smartcoderszone.com/2010/07/download-wordpress-3d-rotate-flash-tag-cloud-plugin/</link>
		<comments>http://smartcoderszone.com/2010/07/download-wordpress-3d-rotate-flash-tag-cloud-plugin/#comments</comments>
		<pubDate>Sat, 03 Jul 2010 07:09:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Download wordpress 3d rotate flash tag cloud]]></category>
		<category><![CDATA[Download wordpress 3d rotate flash tag cloud plugin]]></category>
		<category><![CDATA[flash tag cloud wordpress]]></category>
		<category><![CDATA[free download flash tag cloud]]></category>
		<category><![CDATA[how to insert flash tag cloud in wordpress]]></category>

		<guid isPermaLink="false">http://smartcoderszone.com/?p=135</guid>
		<description><![CDATA[Hi Guys 
I found a wordpress plugin that allows to display your tags in 3d rotate flash. It is a wonderful plugin having configurable settings so that you can set height width of that plugin. You can also decide where you want to display this tag clouds. You can display it on page or post [...]]]></description>
			<content:encoded><![CDATA[<p>Hi Guys </p>
<p>I found a wordpress plugin that allows to display your tags in 3d rotate flash. It is a wonderful plugin having configurable settings so that you can set height width of that plugin. You can also decide where you want to display this tag clouds. You can display it on page or post or on your sidebar. </p>
<p><strong>Installation &#8211; </strong><br />
   1. Make sure you&#8217;re running WordPress version 2.3 or better. It won&#8217;t work with older versions.<br />
   2. Download the zip file and extract the contents.<br />
   3. Upload the &#8216;wp-cumulus&#8217; folder to your plugins directory (wp-content/plugins/).<br />
   4. Activate the plugin through the &#8216;plugins&#8217; page in WP.<br />
   5. See &#8216;Options->WP Cumulus&#8217; to adjust things like display size, etc&#8230;</p>
<p>In order to actually display the tag cloud, you have three options.</p>
<p>   1. Create a page or post and type [ wp-cumulus ] (without space) anywhere in the content. This &#8216;tag&#8217; will be replaced by the flash movie when viewing the page. See here for more info.<br />
   2. Add the following code anywhere in your theme to display the cloud.
<pre class="brush: php;">&lt;?php wp_cumulus_insert(); ?&gt;</pre>
<p> This can be used to add WP Cumulus to your sidebar, although it may not actually be wide enough in many cases to keep the tags readable.<br />
   3. The plugin adds a widget, so you can place it on your sidebar through &#8216;Appearance&#8217;->&#8217;Widgets&#8217;. Open the widget to access it&#8217;s own set of settings (background color, size, etc).</p>
<p>You can download this plugin from here.</p>
<p><a href="http://wordpress.org/extend/plugins/wp-cumulus/"  target="_blank"><br />
<h2>Download</h2>
<p></a></p>
<p>You will surely want to implement this beautiful flash tag cloud plugin.</p>
<p>Source : wordpress.org</p>
]]></content:encoded>
			<wfw:commentRss>http://smartcoderszone.com/2010/07/download-wordpress-3d-rotate-flash-tag-cloud-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to add multiple menu in wordpress</title>
		<link>http://smartcoderszone.com/2010/07/how-to-add-multiple-menu-in-wordpress/</link>
		<comments>http://smartcoderszone.com/2010/07/how-to-add-multiple-menu-in-wordpress/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 09:34:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Download Wordpress Navigation List Plugin NAVT plugin]]></category>
		<category><![CDATA[How to add multiple menu in wordpress]]></category>
		<category><![CDATA[how to add multiple menus in NAVT]]></category>
		<category><![CDATA[how to add multiple menus in NAVT wordpress plugin]]></category>
		<category><![CDATA[how to add/manage multiple menus in wordpress]]></category>
		<category><![CDATA[How to manage multiple navigation list plugin]]></category>
		<category><![CDATA[install multiple menu in wordpress]]></category>
		<category><![CDATA[wordpress multiple menu]]></category>

		<guid isPermaLink="false">http://smartcoderszone.com/?p=124</guid>
		<description><![CDATA[Hi Guys,
Recently I need to implement multiple menu in wordpress. Wordpress provides great plugin &#8220;Wordpress Navigation List Plugin NAVT&#8221;. It has many features and interface for managing multiple menus like add multiple menus, add links to menu, add category to menu and add pages to menus directly.
You can add multiple menu to your site by [...]]]></description>
			<content:encoded><![CDATA[<p>Hi Guys,</p>
<p>Recently I need to implement multiple menu in wordpress. Wordpress provides great plugin &#8220;Wordpress Navigation List Plugin NAVT&#8221;. It has many features and interface for managing multiple menus like add multiple menus, add links to menu, add category to menu and add pages to menus directly.</p>
<p>You can add multiple menu to your site by copy paste following methods call.</p>
<pre class="brush: php;">
&lt;?php
// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
    'primary' =&gt; __( 'Primary Navigation', 'twentyten' ),
) );

register_nav_menus( array(
	'footer' =&gt; __( 'Footer Navigation', 'twentyten' ),
) );
?&gt;
</pre>
<p>register_nav_menus function for primary menu (default menu in wordpress), you can find in function.php file. You need to copy paste it for footer menu (for example).</p>
<p>Now you just need to call a simple function for footer menu in footer.php (or your desired location may be in header.php)</p>
<pre class="brush: php;">
 &lt;?php wp_nav_menu( array( 'container_class' =&gt; 'footer-menu', 'theme_location' =&gt; 'footer' ) ); ?&gt;
</pre>
<p>Now go to appearance-&gt;menus for setting links under footer menu.</p>
<p>That&#8217;s It.</p>
<p>You can download Wordpress Navigation List Plugin NAVT plugin from here.</p>
<h2><a href="http://wordpress.org/extend/plugins/wordpress-navigation-list-plugin-navt/" target="_blank">Download</a></h2>
<p>Hope this tutorial help you.</p>
]]></content:encoded>
			<wfw:commentRss>http://smartcoderszone.com/2010/07/how-to-add-multiple-menu-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Pretty CSS3 radius and shadow property</title>
		<link>http://smartcoderszone.com/2010/06/pretty-css3-radius-and-shadow-property/</link>
		<comments>http://smartcoderszone.com/2010/06/pretty-css3-radius-and-shadow-property/#comments</comments>
		<pubDate>Wed, 30 Jun 2010 07:19:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[advance css3 properties]]></category>
		<category><![CDATA[beatiful css3 property examples]]></category>
		<category><![CDATA[css3 radius and shadow property]]></category>
		<category><![CDATA[free download css3 property demo]]></category>
		<category><![CDATA[Pretty CSS3 radius and shadow property]]></category>

		<guid isPermaLink="false">http://smartcoderszone.com/?p=108</guid>
		<description><![CDATA[Hello Friends,
Today I want to share very interesting topic about css3. CSS3 offers some newly added property of radius and shadow, which makes object very beautiful and attractive.
You can make object (div) to your desired shape and give it look like any photoshop designed with css3 property.
Start with radius property -


/*  mozilla   */
 -moz-border-radius:100px;
 /*  [...]]]></description>
			<content:encoded><![CDATA[<p>Hello Friends,</p>
<p>Today I want to share very interesting topic about css3. CSS3 offers some newly added property of radius and shadow, which makes object very beautiful and attractive.</p>
<p>You can make object (div) to your desired shape and give it look like any photoshop designed with css3 property.</p>
<p>Start with <strong>radius property</strong> -</p>
<pre class="brush: css;">

/*  mozilla   */
 -moz-border-radius:100px;
 /*  safari and crome  */
 -webkit-border-radius: 100px;
 /*  css3 opera browser   */
 border-radius: 100px;
</pre>
<p>All browsers having their own syntax for its implementations. Firefox uses prefix -moz in radius property. With this radius property we can make circle shape. It will turn all four corners ( top left, top right, bottom right, bottom left ) of div to make it circle of radius 100.</p>
<p>We can write radius property this type as well -</p>
<pre class="brush: css;">

-moz-border-radius:30px 50px;
</pre>
<p>Here 30px represents top left and bottom right and 50px represents top right and bottom left.</p>
<p>We can further explore radius property in this way -</p>
<pre class="brush: css;">

/*  mozilla   */

 -moz-border-radius-topleft: 30px;
 -moz-border-radius-topright: 30px;
 -moz-border-radius-bottomleft: 30px;
 -moz-border-radius-bottomright: 30px;

 /*  safari n crome  */

 -webkit-border-top-left-radius : 30px;
 -webkit-border-top-right-radius : 30px;
 -webkit-border-bottom-left-radius : 30px;
 -webkit-border-bottom-right-radius : 30px;

 /*  css3 opera browser   */

 border-top-left-radius : 30px;
 border-top-right-radius : 30px;
 border-bottom-right-radius : 30px;
 border-bottom-left-radius : 30px;
</pre>
<p>There is little difference in syntax of browsers for this property.  You can see in above example.</p>
<p>Following are some examples of radius property with explanation.</p>
<div id="attachment_109" class="wp-caption alignright" style="width: 522px"><a rel="http://smartcoderszone.com/demo/css/css.html" href="http://smartcoderszone.com/demo/css/css.html" target="_blank"><img class="size-full wp-image-109 " title="css3_circle_using_radious_property" src="http://smartcoderszone.com/wp-content/uploads/2010/06/css3_circle_using_radious_property.jpg" alt="CSS3 radius property example" width="512" height="233" /></a><p class="wp-caption-text">CSS3 radius property example</p></div>
<div id="attachment_110" class="wp-caption alignright" style="width: 535px"><a rel="http://smartcoderszone.com/demo/css/css.html" href="http://smartcoderszone.com/demo/css/css.html" target="_blank"><img class="size-full wp-image-110  " title="css3_radius_propety_detail" src="http://smartcoderszone.com/wp-content/uploads/2010/06/css3_radius_propety_detail.jpg" alt="CSS3 radius property example" width="525" height="233" /></a><p class="wp-caption-text">CSS3 radius property example</p></div>
<div id="attachment_111" class="wp-caption alignright" style="width: 535px"><a rel="http://smartcoderszone.com/demo/css/css.html" href="http://smartcoderszone.com/demo/css/css.html" target="_blank"><img class="size-full wp-image-111  " title="css_shapes_radius_property" src="http://smartcoderszone.com/wp-content/uploads/2010/06/css_shapes_radius_property.jpg" alt="CSS3 radius property example" width="525" height="370" /></a><p class="wp-caption-text">CSS3 radius property example</p></div>
<p>Now we will understand wonderful <strong>shadow property</strong> -</p>
<p>Shadow property can be inset or outset. It is outset by default if not mentioned.</p>
<pre class="brush: css;">

-moz-box-shadow: inset 0 3px 8px rgba(0,0,0,.9);
</pre>
<p>First parameter represents inset shadow. Second specify horizontal shadow. Third shows vertical shadow. Fourth represents shadow blur. Fifth display shadow color.</p>
<p>Example of other browser syntax</p>
<pre class="brush: css;">
-moz-box-shadow: 5px 5px 5px #000;
-webkit-box-shadow: 5px 5px 5px #ccc;
box-shadow: 5px 5px 5px #ccc;
</pre>
<p>Note that css3 used additional character in color &#8220;a&#8221;. This a stands for alpha property. This new feature allows us to specify an opacity value for a color. This one could make life for webdevelopers a lot easier.</p>
<p>You can simple put color also.</p>
<p>Following is example of shadow property  -</p>
<div id="attachment_113" class="wp-caption alignright" style="width: 535px"><a rel="http://smartcoderszone.com/demo/css/css3_shadow.html" href="http://smartcoderszone.com/demo/css/css3_shadow.html" target="_blank"><img class="size-full wp-image-113  " title="css3_shadow_property" src="http://smartcoderszone.com/wp-content/uploads/2010/06/css3_shadow_property.jpg" alt="CSS3 Shadow Property Example" width="525" height="233" /></a><p class="wp-caption-text">CSS3 Shadow Property Example</p></div>
<p>It is very simple and easy to use. Browser supporting css3 (Chrome 4+ or</p>
<p>Firefox 3.5+)  includes Firefox/Mozilla, Google Crome, Safari and Opera. IE8 and below still not supporting it.</p>
<p>You can see Demo of radius and shadow property here.</p>
<h2><a href="http://smartcoderszone.com/demo/css/css.html" target="_blank">CSS3 Radius Demo</a></h2>
<h2><a href="http://smartcoderszone.com/demo/css/css3_shadow.html" target="_blank">CSS3 Shadow Demo</a></h2>
<p>You can download zip of all examples-</p>
<h2><a href="http://smartcoderszone.com/demo/css/css3_radius_shadow.zip">Download</a></h2>
<p>Hope you will enjoy this new feature of css3. If you have any query regarding this let me know your feedback.</p>
]]></content:encoded>
			<wfw:commentRss>http://smartcoderszone.com/2010/06/pretty-css3-radius-and-shadow-property/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>What is RoR?</title>
		<link>http://smartcoderszone.com/2010/06/what-is-ror/</link>
		<comments>http://smartcoderszone.com/2010/06/what-is-ror/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 07:08:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[RoR]]></category>
		<category><![CDATA[basic definition of ruby on rails]]></category>
		<category><![CDATA[introduction to ruby on rails]]></category>
		<category><![CDATA[What is RoR?]]></category>
		<category><![CDATA[what is ruby on rails framework]]></category>

		<guid isPermaLink="false">http://smartcoderszone.com/?p=101</guid>
		<description><![CDATA[Ruby on Rails, often shortened to Rails or RoR, is an open source web application framework for the Ruby programming language.
What is Ruby?
Ruby is a pure object-oriented programming language with a super clean syntax that makes programming elegant and fun.
What is Rails?
Rails is an open source Ruby framework for developing database-backed web applications.  Rail&#8217;s guiding [...]]]></description>
			<content:encoded><![CDATA[<p>Ruby on Rails, often shortened to Rails or RoR, is an open source web application framework for the Ruby programming language.</p>
<h3>What is Ruby?</h3>
<p>Ruby is a pure object-oriented programming language with a super clean syntax that makes programming elegant and fun.</p>
<h3>What is Rails?</h3>
<p>Rails is an open source Ruby framework for developing database-backed web applications.  Rail&#8217;s guiding principles: <em>less software</em> and <em>convention over configuration</em>.</p>
<p><em>Less software</em> means you write fewer lines of code to implement your application. Keeping your code small means faster development and fewer bugs, which makes your code easier to understand, maintain, and enhance. Very shortly, you will see how Rails cuts your code burden.</p>
<p><em>Convention over configuration</em> means an end to verbose XML configuration files&#8211;there aren&#8217;t any in Rails! Instead of configuration files, a Rails application uses a few simple programming conventions that allow it to figure out everything through reflection and discovery. Your application code and your running database already contain everything that Rails needs to know!</p>
<p>Source: wikipedia, oreilly.</p>
]]></content:encoded>
			<wfw:commentRss>http://smartcoderszone.com/2010/06/what-is-ror/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dynamic multiple image upload using jquery</title>
		<link>http://smartcoderszone.com/2010/06/dynamic-multiple-image-upload-using-jquery/</link>
		<comments>http://smartcoderszone.com/2010/06/dynamic-multiple-image-upload-using-jquery/#comments</comments>
		<pubDate>Sun, 27 Jun 2010 12:54:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Dynamic multiple image upload using jquery]]></category>
		<category><![CDATA[free download jquery multiple image uplaod in php]]></category>
		<category><![CDATA[jquery dynamic multiple image upload]]></category>
		<category><![CDATA[jquery+php multiple image uplaod script]]></category>
		<category><![CDATA[multiple image upload using jquery]]></category>

		<guid isPermaLink="false">http://smartcoderszone.com/?p=102</guid>
		<description><![CDATA[Friends, Today I am posting multiple image upload using jquery in a php form. It is a dynamic script that will upload image without refresh and stored temporarily in the database. It will finally set in database when we will submit our main form.
Here is the code for our form -

&#60;table width=&#34;100%&#34; align=&#34;center&#34; border=&#34;0&#34;&#62;
&#60;form method=&#34;post&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>Friends, Today I am posting multiple image upload using jquery in a php form. It is a dynamic script that will upload image without refresh and stored temporarily in the database. It will finally set in database when we will submit our main form.</p>
<p>Here is the code for our form -</p>
<pre class="brush: php;">
&lt;table width=&quot;100%&quot; align=&quot;center&quot; border=&quot;0&quot;&gt;
&lt;form method=&quot;post&quot; enctype=&quot;multipart/form-data&quot;&gt;
&lt;tr&gt;
	&lt;td width=&quot;25%&quot;&gt;Title :&lt;/td&gt;
	&lt;td&gt;&lt;input type=&quot;text&quot; name=&quot;title&quot; id=&quot;title&quot; size=&quot;30&quot; value=&quot;&quot;/&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
	&lt;td valign=&quot;top&quot;&gt;Item Avatar :&lt;/td&gt;&lt;td valign=&quot;top&quot;&gt;
	&lt;div id=&quot;upload&quot; &gt;&lt;span&gt;Upload Image&lt;span&gt;&lt;/div&gt;&lt;span id=&quot;status&quot;&gt;&lt;/span&gt;
	&lt;table&gt;&lt;tr&gt;&lt;td id=&quot;files&quot;&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
	&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
	&lt;td colspan=&quot;2&quot; align=&quot;center&quot;&gt;
	&lt;input type=&quot;submit&quot; name=&quot;add_item&quot; value=&quot;Submit&quot; id=&quot;sub_button&quot; /&gt;&amp;nbsp;
       &lt;/td&gt;
&lt;/tr&gt;
&lt;/form&gt;
&lt;/table&gt;
</pre>
<p>We will use this simple jquery code for sending server side request to store our image as well as client side validation for valid image.</p>
<pre class="brush: jscript;">
&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot;&gt;
$(function()
{
	var btnUpload=$('#upload');
	var status=$('#status');
	new AjaxUpload(btnUpload, {
	action: 'upload-file.php',
	name: 'uploadfile',
	onSubmit: function(file, ext)
	{
	 if (! (ext &amp;&amp; /^(jpg|png|jpeg|gif)$/.test(ext))){
     // extension is not allowed
	status.text('Only JPG, PNG or GIF files are allowed');
	return false;
	}status.text('Uploading...');
	},

	onComplete: function(file, response)
	{
		//On completion clear the status
		status.text('');
		//Add uploaded file to list
		var bb=response.substr(0,7)
		var idd=response.replace('success',' ');
		var idb =idd.replace(/^\s*|\s*$/g,'');
		if(bb===&quot;success&quot;)
		{
			$('&lt;span&gt;&lt;/span&gt;').appendTo('#files').html('&lt;img src=&quot;images/'+file+'&quot; alt=&quot;&quot; width=&quot;120&quot; height=&quot;120&quot; style=&quot;margin:5px;&quot; /&gt;').addClass('success');
		}
		else
		{
			$('&lt;span&gt;&lt;/span&gt;').appendTo('#files').text(file).addClass('error');
		}
	}});
});

&lt;/script&gt;
</pre>
<p>In upload-file.php, we simply write code to upload file using php function move_uploaded_file() using temp session variable for first time. After uploading no. of files, when we finally submit form data then we replace temp session with the main table id in database at the time of insert data to table.</p>
<p>You can download complete source code from here.</p>
<p><a href="http://smartcoderszone.com/demo/jqueryimageupload/jqueryimageupload.rar" target="_blank"><strong><br />
Download</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://smartcoderszone.com/2010/06/dynamic-multiple-image-upload-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to calculate number of days between two dates</title>
		<link>http://smartcoderszone.com/2010/06/how-to-calculate-number-of-days-between-two-dates/</link>
		<comments>http://smartcoderszone.com/2010/06/how-to-calculate-number-of-days-between-two-dates/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 07:21:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[date difference between two dates in php]]></category>
		<category><![CDATA[How to calculate number of days between two dates]]></category>
		<category><![CDATA[how to calulate date difference in php]]></category>
		<category><![CDATA[setting cron job for particular date interval]]></category>

		<guid isPermaLink="false">http://smartcoderszone.com/?p=98</guid>
		<description><![CDATA[Following are the script that calculate number of days between two dates. I used this script in my recent project work. I need to run a cron file to all members of the site that haven&#8217;t logged into site more than 7 days. I created this script for sending email if log in time of [...]]]></description>
			<content:encoded><![CDATA[<p>Following are the script that calculate number of days between two dates. I used this script in my recent project work. I need to run a cron file to all members of the site that haven&#8217;t logged into site more than 7 days. I created this script for sending email if log in time of member having more than 7 days.</p>
<pre class="brush: php;">
&lt;?php
	$newupdated_at=&quot;2010-06-11&quot;;
	$current_date=date('Y-m-d');

	function dateDiff($dformat, $endDate, $beginDate)
	{
		$date_parts1=explode($dformat, $beginDate);
		$date_parts2=explode($dformat, $endDate);
		// put values in this function in  (M,D,Y) format
		$start_date=gregoriantojd($date_parts1[1], $date_parts1[2], $date_parts1[0]);
		$end_date=gregoriantojd($date_parts2[1], $date_parts2[2], $date_parts2[0]);
		if($end_date - $start_date&lt;0)
		return -($end_date - $start_date);
		else
		return $end_date - $start_date;
	}

	$datediff=dateDiff(&quot;-&quot;, $current_date, $newupdated_at);
	echo $datediff;
?&gt;
</pre>
<p>Notice that gregoriantojd function need parameters in m, d, y order. So when you put parts of date in this function then order of parts will be month,date and year.</p>
<p>Enjoy it <img src='http://smartcoderszone.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://smartcoderszone.com/2010/06/how-to-calculate-number-of-days-between-two-dates/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to add border to table row using jquery</title>
		<link>http://smartcoderszone.com/2010/06/how-to-add-border-to-table-row-using-jquery/</link>
		<comments>http://smartcoderszone.com/2010/06/how-to-add-border-to-table-row-using-jquery/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 06:40:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[adding border using jquery]]></category>
		<category><![CDATA[css+jquery to add border]]></category>
		<category><![CDATA[How to add border to table row using jquery]]></category>

		<guid isPermaLink="false">http://smartcoderszone.com/?p=96</guid>
		<description><![CDATA[Hi Guys,
In the previous post we have learned that how to add background color of table row using jquery. Today I am posting jquery commands for adding border to any table row by using jquery simple statements.
To add border to your table row, we need to use jquery css property. One thing is noticeable is [...]]]></description>
			<content:encoded><![CDATA[<p>Hi Guys,</p>
<p>In the previous post we have learned that how to add background color of table row using jquery. Today I am posting jquery commands for adding border to any table row by using jquery simple statements.</p>
<p>To add border to your table row, we need to use jquery css property. One thing is noticeable is that when we want to add border around table row then we have to use <strong>content(td) </strong> function for applying border to each table data. This function is must and without it border property for table row won&#8217;t work.</p>
<pre class="brush: jscript;">
$('#special_list').contents('td').css({'border': '1px solid #aaaaaa'});
</pre>
<p>Here #special_list is the id of the table row (<br />
<tr>). Above command simply add border around whole table row.</p>
<p>Now if we want only top and bottom border, then we have to remove border of left and right side.</p>
<pre class="brush: jscript;">
$('#special_list').contents('td').css({'border': '1px solid #aaaaaa', 'border-left': 'none', 'border-right': 'none'});
</pre>
<p>If you dont want any border around it then.</p>
<pre class="brush: jscript;">
$('#special_list').contents('td').css({'border': 'none'});
</pre>
<p>You can specify which side border you want. Like this -</p>
<pre class="brush: jscript;">
$('#special_list').contents('td').css({'border-left': '1px solid #aaaaaa'});
</pre>
<p>If you want border around any div then &#8211; </p>
<pre class="brush: jscript;">
$('#special_list').css({'border-left': '1px solid #aaaaaa'});
</pre>
<p>Here #special_list is the id of that div.</p>
<p>We can change the background color of any div &#8211; </p>
<pre class="brush: jscript;">
$('#special_list').css('background-color', '#cccccc');
</pre>
<p>Hope these jquery commands help you to solve your problem. More jquery stuff comming soon.</p>
<p> <img src='http://smartcoderszone.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://smartcoderszone.com/2010/06/how-to-add-border-to-table-row-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>how to add background color onmouseover using jquery</title>
		<link>http://smartcoderszone.com/2010/06/how-to-add-background-color-onmouseover-using-jquery/</link>
		<comments>http://smartcoderszone.com/2010/06/how-to-add-background-color-onmouseover-using-jquery/#comments</comments>
		<pubDate>Fri, 18 Jun 2010 06:29:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[add css using jquery]]></category>
		<category><![CDATA[change background using jquery]]></category>
		<category><![CDATA[how to add background color onmouseover using jquery]]></category>
		<category><![CDATA[how to change background color of dynamic listing using jquery+php]]></category>
		<category><![CDATA[jquery+php change css on mouse over]]></category>
		<category><![CDATA[onmouseover change css using jquery]]></category>

		<guid isPermaLink="false">http://smartcoderszone.com/?p=94</guid>
		<description><![CDATA[Hi Friends,
In my recent project work, I need to add background color on table row (even rows) on mouse over. I used jquery for this. Its very easy to do that. You need to call two java script function &#8211; one for adding background color onmouseover and second for returning back to original background color [...]]]></description>
			<content:encoded><![CDATA[<p>Hi Friends,</p>
<p>In my recent project work, I need to add background color on table row (even rows) on mouse over. I used jquery for this. Its very easy to do that. You need to call two java script function &#8211; one for adding background color onmouseover and second for returning back to original background color onmouseout.</p>
<p>It is php dynamic listing so you need to use variable $i for separating even and odd listing rows. </p>
<pre class="brush: php;">
&lt;table border='0' cellpadding='0' cellspacing='0'&gt;
&lt;?php
$i=0;
loop start here
?&gt;

&lt;tr id=&quot;special_list&lt;?php echo $i;?&gt;&quot; onmouseover=&quot;javascript:insertback(&lt;?php echo $i;?&gt;);&quot; onmouseout=&quot;javascript:removeback(&lt;?php echo $i;?&gt;);&quot;&gt;
&lt;td&gt;Dynamic Listing Data&lt;/td&gt;
&lt;/tr&gt;

&lt;?php
 ++$i;
loop ends here
?&gt;
&lt;/table&gt;
</pre>
<p>In above code we just call two java script functions onmouseover and onmouseout for changing background of table rows.</p>
<p>Following are the code of those two javascript functions. Its a jquery code that simply uses its property of adding css.</p>
<pre class="brush: jscript;">
function insertback(id)
{
	if(id%2==0)
	{
		$('#special_list'+id).css('background-color', '#cccccc');
	}
}

function removeback(id)
{
	if(id%2==0)
	{
		$('#special_list'+id).css('background-color', '#FFFFFF');
	}
}
</pre>
<p>Jquery uses its property of adding css to element&#8217;s id. Hope this script help you to improve your listing display. </p>
<p>Enjoy it <img src='http://smartcoderszone.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://smartcoderszone.com/2010/06/how-to-add-background-color-onmouseover-using-jquery/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 1.127 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-07-29 22:16:43 -->
