<?xml version="1.0" encoding="UTF-8"?><rss version="0.92">
<channel>
	<title>php tutorial</title>
	<link>http://oneanall.com/php</link>
	<description>Oneanall Tutorial,php tutorial,javascript tutorial weblog</description>
	<lastBuildDate>Thu, 19 May 2011 15:50:44 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	<!-- generator="WordPress/3.0.3" -->

	<item>
		<title>How to install MySQL on Windows</title>
		<description><![CDATA[How to install MySQL on Windows Step by step guide 1)  Download MySQL from http://dev.mysql.com/downloads/mysql/5.1.html and get the Windows Essentials (x86) MSI Installer version. 2) Now run the MSI file and use the following settings Typical Setup Skip Sign-Up make sure &#8220;Configure the MySQL Server now&#8221; is checked &#8220;Detailed Configuration&#8221; &#8220;Developer Machine&#8221; &#8220;Multifunctional Database&#8221; &#8220;InnoDB Tablespace Settings&#8221; [...]]]></description>
		<link>http://oneanall.com/php/2011/05/19/how-to-install-mysql-on-windows/</link>
			</item>
	<item>
		<title>Step by step installation guide of php on window</title>
		<description><![CDATA[Step by step installation guide of php in window. 1) Download and install PHP from http://windows.php.net/download/ 2) Unzip php. In my case, I unzipped to C:\php\ 3) Rename C:\php\php.ini-development to php.ini 4) Edit your php.ini Open php.ini in a text editor. find doc_rootthen change it to point to whatever your Apache DocumentRoot is set to. like: doc_root = &#8220;C:\public_html&#8221; Find  extension_dir and change like [...]]]></description>
		<link>http://oneanall.com/php/2011/05/19/step-by-step-installation-guide-of-php-on-window/</link>
			</item>
	<item>
		<title>How to install apache</title>
		<description><![CDATA[Please follow following points: Download &#038; Unpack Go to http://www.apache.org/dist/httpd/binaries/win32/ and choose a mirror. You want the latest win32-x86-no_ssl.msi &#8220;MSI Installer Package&#8221; release. Install When you install Apache, you&#8217;ll get a prompt for &#8220;Server Information.&#8221; Here is the settings I used: Network Domain: localhost Server Name: localhost Admin Email: (any email. real or fake) You [...]]]></description>
		<link>http://oneanall.com/php/2011/05/19/how-to-install-apache/</link>
			</item>
	<item>
		<title>catalog category view magento page layout change</title>
		<description><![CDATA[catalog category view magento page layout change or u can say How to change category page layout in magento please edit the category view at template/catalog/category/view.phtml. you can also customize the design layout for a particular category Catelog -> manage Categories -> Choose your category Then on the tab section select Custom Design. Change the [...]]]></description>
		<link>http://oneanall.com/php/2011/05/07/catalog-category-view-magento-page-layout-change/</link>
			</item>
	<item>
		<title>getStoreCategories magento is not working</title>
		<description><![CDATA[getStoreCategories magento is not working Or you can say category is not displaying in the left hand side of the template. Here’s what I did: 1. Catalog -> Manage Categories. 2. Click the ’Add Root Category‘ button in the upper-left area. 3. Fill in a name. For this walk-through, I used ’my new root cat‘. [...]]]></description>
		<link>http://oneanall.com/php/2011/05/07/getstorecategories-magento-is-not-working/</link>
			</item>
	<item>
		<title>How to install a Magento theme</title>
		<description><![CDATA[Please follow following step to install Magento theme 1) Download any free theme from  Magento theme site 2) unzip the downloaded file 3) you will see two folder apps and skin (app/design/frontend/default/) similarly for skins (skin/frontend/default/) 4) keep the same strucure and copy the new folder suppose named freepop in both location from respective folder. [...]]]></description>
		<link>http://oneanall.com/php/2011/05/07/how-to-install-a-magento-theme/</link>
			</item>
	<item>
		<title>how to force download known file using php</title>
		<description><![CDATA[Today i got a function please see the function below how to download known file using php function So see the function below how to force download file. &#60;? function force_download($file) { $dir      = &#8220;img/&#8221;; if ((isset($file))&#38;&#38;(file_exists($dir.$file))) { header(&#8220;Content-type: application/force-download&#8221;); header(&#8216;Content-Disposition: inline; filename=&#8221;&#8216; . $dir.$file . &#8216;&#8221;&#8216;); header(&#8220;Content-Transfer-Encoding: Binary&#8221;); header(&#8220;Content-length: &#8220;.filesize($dir.$file)); header(&#8216;Content-Type: application/octet-stream&#8217;); [...]]]></description>
		<link>http://oneanall.com/php/2011/03/29/how-to-force-download-known-file-using-php/</link>
			</item>
	<item>
		<title>how to break a sentance after some words using php</title>
		<description><![CDATA[wordrap php Today we will see how to break a sentance after some characters using php. Sometime we need to break a long line into small peaces of sentence to meet the designing   requirement. PHP has very good function wordwrap() to meet the req. Basic sentance of the wordwrap() php function string wordwrap ( string $str [, int $width = 75 [, string $break = [...]]]></description>
		<link>http://oneanall.com/php/2011/01/28/how-to-break-a-sentance-after-some-words-using-php/</link>
			</item>
	<item>
		<title>Comparing Dates in PHP</title>
		<description><![CDATA[Hi today i will discuss how to compare  two date using php. Actually i want the expire date must be less than today using php. do simple step to compare 2 dates using php First get today&#8217;s date in PHP $todays_date = date(&#8220;Y-m-d&#8221;); Suppose expire date is $exp = &#8220;2002-01-16&#8243;; Now the whole date comparison [...]]]></description>
		<link>http://oneanall.com/php/2010/11/13/comparing-dates-in-php/</link>
			</item>
	<item>
		<title>read html and extract data from a tag using php</title>
		<description><![CDATA[read the html and extract data from a tag php or you can say Extract data from HTML tags using php so here i am providing you a html script using that you can read the data from the remote site and perse the DOM and using the information of the site as required for your project. First [...]]]></description>
		<link>http://oneanall.com/php/2010/11/01/read-html-and-extract-data-from-a-tag-using-php/</link>
			</item>
	<item>
		<title>addtocart is not addning in localhost in oscommerse</title>
		<description><![CDATA[addtocart is not addning in localhost in oscommerse addtocart is not addning in localhost in oscommerse  in new insatllation Hi There, I&#8217;m running my osCommerce 2.2rc2a store on WAMP localhost. Everything seems to be fine expect when i go to add items to cart, it takes me to the cart but gives message &#8220;[b]Your shopping [...]]]></description>
		<link>http://oneanall.com/php/2010/10/29/addtocart-is-not-addning-in-localhost-in-oscommerse/</link>
			</item>
	<item>
		<title>how to add extra filed in user profile page</title>
		<description><![CDATA[Adding Extra Fields to the WordPress User Profile or how to add extra filed in user profile page WordPress offers some great options and function.There are some fileds in the user&#8217;s profile page where user can add info like bio but if admin want to provide more option or extra field to user than something [...]]]></description>
		<link>http://oneanall.com/php/2010/09/26/how-to-add-extra-filed-in-user-profile-page/</link>
			</item>
	<item>
		<title>how to call plugins in post</title>
		<description><![CDATA[See here i am giving you an example to develop a wordpress plugins and calling it in post.Means creating a wordpress plugins and allowing option to use it in wordpress post. ShortCode API What is ShortCode API?                      Shortcode API, a simple set of functions for creating macro codes for use in post content.                       [...]]]></description>
		<link>http://oneanall.com/php/2010/09/15/how-to-call-plugins-in-post/</link>
			</item>
	<item>
		<title>Developing Plugins For WordPress</title>
		<description><![CDATA[Developing Plugins For WordPress DEVELOPING PLUGINS FOR WORDPRESS Agenda Introduction Developing Plugin WP API: Filters/Hooks Plugin Path Plugin Details Inserting CSS/Javascript Modifying Content Translating Plugin Text To Other Languages Shortcode API Activating The Plugin WP-Polls, WP-PostRatings, WP-PostViews, WP-Print, WP-Email, WP-Useronline, etc WP:API Filters/Hooks Filters Filters allows your plugin to modify data that passes through WordPress [...]]]></description>
		<link>http://oneanall.com/php/2010/09/15/developing-plugins-for-wordpress/</link>
			</item>
	<item>
		<title>The page you requested cannot be displayed. error &#8217;80020009&#8242; /error/asperror.asp, line 158</title>
		<description><![CDATA[eway internal server error&#8230; The page you requested cannot be displayed. error &#8217;80020009&#8242; /error/asperror.asp, line 158 Hi as a programmer when i changed the hosting and shifted the server for oscommerce shopping cart. I started getting error on the conformation pages of eaway payment. here is the solution: chk all the path properly in my case i [...]]]></description>
		<link>http://oneanall.com/php/2010/09/04/eway-errorthe-page-you-requested-cannot-be-displayed-error-80020009-errorasperror-asp-line-158/</link>
			</item>
	<item>
		<title>Fatal error: Unable to read X bytes in yourfiles.php on line 0</title>
		<description><![CDATA[Fatal error: Unable to read X bytes in yourfile.php on line 0 Solution: To remove above error we have do following things 1) Zend Optimizer requires files to be uploaded in forced binary mode not is ASCII mode because Zend Optimizer requires required appropriate files ( see the installation instructions) to be uploaded . This is usually accomplished using a [...]]]></description>
		<link>http://oneanall.com/php/2010/09/01/fatal-error-unable-to-read-x-bytes-in-yourfiles-php-on-line-0/</link>
			</item>
	<item>
		<title>Stock by Attributes-zencarts:code suffix for each attribute</title>
		<description><![CDATA[Stock by Attributes-zencarts : code suffix for each attribute Hi today i am writting how to add code suffix for each attribute combination of product in zencart.. for eaxmple suppose you have a product mouse with ps-2 in 3 different color like blue,red,balck and mouse with usb in white and black like mouse ps-2  blue [...]]]></description>
		<link>http://oneanall.com/php/2010/08/14/stock-by-attributes-zencartscode-suffix-for-each-attribute/</link>
			</item>
	<item>
		<title>how to check weather session started</title>
		<description><![CDATA[how to check weather session started see the small example to check weather session has been started or not. thanks mrphpguru]]></description>
		<link>http://oneanall.com/php/2010/07/26/how-to-check-weather-session-started/</link>
			</item>
	<item>
		<title>php Vs perl &#8211; why php better than perl</title>
		<description><![CDATA[php Vs perl &#8211; why php better than perl PHP is another computer language. In a way, Perl and PHP are competitors in the programming world. Both languages have relatively similar learning curves, work well in the server environment, and have similar overall capabilities. As you would expect, each language has its pros and cons. [...]]]></description>
		<link>http://oneanall.com/php/2010/07/21/php-vs-perl-why-php-better-than-perl/</link>
			</item>
	<item>
		<title>how to configure wp tag cloud manually</title>
		<description><![CDATA[how to configure wp tag cloud manually Well, here is the concept of the tag cloud: Usage &#60;?php wp_tag_cloud( $args ); ?&#62; Default Usage &#60;?php $args = array( &#8216;smallest&#8217;  =&#62; 8, &#8216;largest&#8217;   =&#62; 22, &#8216;unit&#8217;      =&#62; &#8216;pt&#8217;, &#8216;number&#8217;    =&#62; 45, &#8216;format&#8217;    =&#62; &#8216;flat&#8217;, &#8216;separator&#8217; =&#62; &#8216;\n&#8217;, &#8216;orderby&#8217;   =&#62; &#8216;name&#8217;, &#8216;order&#8217;     =&#62; &#8216;ASC&#8217;, &#8216;exclude&#8217;   =&#62; , &#8216;include&#8217;   [...]]]></description>
		<link>http://oneanall.com/php/2010/07/20/how-to-configure-wp-tag-cloud-manually/</link>
			</item>
	<item>
		<title>downloading function php</title>
		<description><![CDATA[hi friends i found a nice downlaod script i love to use this to amke browser force to download the image file word file xls file and so on.. Chk  this function here $allowed_ext = array ( // archives &#8216;zip&#8217; =&#62; &#8216;application/zip&#8217;, // documents &#8216;pdf&#8217; =&#62; &#8216;application/pdf&#8217;, &#8216;doc&#8217; =&#62; &#8216;application/msword&#8217;, &#8216;xls&#8217; =&#62; &#8216;application/vnd.ms-excel&#8217;, &#8216;ppt&#8217; =&#62; [...]]]></description>
		<link>http://oneanall.com/php/2010/07/17/downloading-function-php/</link>
			</item>
	<item>
		<title>weight and price zone rates shipping module oscommerce</title>
		<description><![CDATA[hi every body i today i am writing weight and price zone rates shipping module oscommerce. For orders less than $180, shipping is $10 flat rate within INDIA and $500 only $5 and more than $500 is free. So for this shopping module i modified the zone rate based shopping module look for price also. In default zone [...]]]></description>
		<link>http://oneanall.com/php/2010/07/12/weight-and-price-zone-rates-shipping-module-oscommerce/</link>
			</item>
	<item>
		<title>how to chk ip in a ip range using php</title>
		<description><![CDATA[Okay, so I put all my IP ranges in the database and wrote a function which takes an IP as input and checks the database to see if the IP is in the listed ranges. It returns TRUE if the IP is not in any of the ranges. The table where I put the ranges looks [...]]]></description>
		<link>http://oneanall.com/php/2010/07/11/how-to-chk-ip-in-a-ip-range-using-php/</link>
			</item>
	<item>
		<title>how to list all post of a category wordpress plugings</title>
		<description><![CDATA[Hi every body mrphpguru here agian. I am written this artical to list all post of a category wordpress plugings. Now please open the archive page of the theam. now just select the are where you want to display all the list of the post of a category. &#60;div id=&#8221;post_ran&#8221;&#62; &#60;div&#62; &#60;h2&#62;List of post under &#60;/h2&#62; &#60;/div&#62; [...]]]></description>
		<link>http://oneanall.com/php/2010/07/10/how-to-list-all-post-of-a-category-wordpress-plugings/</link>
			</item>
	<item>
		<title>&#8211;&gt;ZOAEX-Ribbon http://bit&#8230;.</title>
		<description><![CDATA[&#8211;&#62;ZOAEX-Ribbon http://bit.ly/cHbWAJ]]></description>
		<link>http://oneanall.com/php/2010/07/06/zoaex-ribbon-httpbit/</link>
			</item>
	<item>
		<title>php function to formate mysql date</title>
		<description><![CDATA[php tutorial hi today i am writting simple php function to formate the date from mysql data &#60;? //first formate defining define(&#8216;DATE_FORMAT&#8217;, &#8216;d/m/Y&#8217;);  // this is used for date() //now writing the function to formate the date function tep_date_short_mdy($raw_date) { $date=strtotime($raw_date); $daylam=date(DATE_FORMAT, $date); // 05/16/2000 $daylam1=explode(&#8216;/&#8217;,$daylam); $day1=$daylam1[1]; $month1=$daylam1[0]; $year1=$daylam1[2]; $dayfinal=$month1.&#8217;/&#8217;.$day1.&#8217;/&#8217;.$year1; return $dayfinal; } ?&#62; isn&#8217;t [...]]]></description>
		<link>http://oneanall.com/php/2010/07/06/php-function-to-formate-mysql-date/</link>
			</item>
	<item>
		<title>display total number of comments and category in wordpress blog</title>
		<description><![CDATA[Hi i am wrting post to display number of comments and number of categories in wordpress blog it is very simple &#60;?php $numcomms = $wpdb-&#62;get_var("SELECT COUNT(*) FROM $wpdb-&#62;comments WHERE comment_approved = '1'"); if (0 &#60; $numcomms) $numcomms = number_format($numcomms); $numcats = $wpdb-&#62;get_var("SELECT COUNT(*) FROM $wpdb-&#62;categories"); if (0 &#60; $numcats) $numcats = number_format($numcats); ?&#62; &#60;p&#62;&#60;?php printf(__('There are [...]]]></description>
		<link>http://oneanall.com/php/2010/07/04/display-total-number-of-comments-and-category-in-wordpress-blog/</link>
			</item>
	<item>
		<title>Display the Total Number of WordPress Posts</title>
		<description><![CDATA[Hi everybody today i will write post to display number of post in wordpress I am not writing a plugin in for wordpress to display number of post in wordpress &#60;?php $numposts = $wpdb-&#62;get_var("SELECT COUNT(*) FROM $wpdb-&#62;posts WHERE post_status = 'publish'"); if (0 &#60; $numposts) $numposts = number_format($numposts); ?&#62; &#60;p&#62;&#60;?php printf(__('There are currently %1$s &#60;a [...]]]></description>
		<link>http://oneanall.com/php/2010/07/04/display-the-total-number-of-wordpress-posts/</link>
			</item>
	<item>
		<title>php class for login system</title>
		<description><![CDATA[Hi friend i found a very nice php class for login system using php This article is intended primarily for intermediate to advanced users of PHP, as it is not exactly a tutorial, but a description of the implementation of an advanced Login System. Beginners who are looking to learn about user session and cookies [...]]]></description>
		<link>http://oneanall.com/php/2010/06/29/php-class-for-login-system/</link>
			</item>
	<item>
		<title>Calculating UPS Shipping Rate With PHP</title>
		<description><![CDATA[Today I will discuss how to use php class to calculate the UPS shipping Rate Update: Although this code still works great, I have started an open source project at http://code.google.com/p/ups-php/. For easier to use code, improved documentation and a more complete feature set. The project also covers the other UPS API services. Update 2: For [...]]]></description>
		<link>http://oneanall.com/php/2010/06/29/calculating-ups-shipping-rate-with-php/</link>
			</item>
	<item>
		<title>PHP Class for Date Time calculations</title>
		<description><![CDATA[Performing data/time calculation is basic requirement in any programming project. No serious application can hide from it, so thankfully PHP itself comes with some very useful data/time functions. But, I feel that those PHP date/time functions are probably great for data/time display and formatting, but not so much for calculating for things like the beginning/end of [...]]]></description>
		<link>http://oneanall.com/php/2010/06/29/php-class-for-date-time-calculations/</link>
			</item>
	<item>
		<title>RT @oneanallsms Excellence is &#8230;</title>
		<description><![CDATA[RT @oneanallsms Excellence is not a one-time achievement- Inspirational Quote of the Day http://bit.ly/a7BLec]]></description>
		<link>http://oneanall.com/php/2010/06/25/rt-oneanallsms-excellence-is/</link>
			</item>
	<item>
		<title>strpos function to check character in string using php</title>
		<description><![CDATA[strpos function to check character in string using php suppose i would like to find : in string so chk this out $username = &#8217;mrphpguru:aphp coder&#8217;; $pos = strpos($username, &#8221;!&#8221;); if ($pos == -1) { print Please &#8216;don&#8217;t put : in your usernames&#8217;; } else { print &#8217;No special character in the string.Thanks&#8217;; } So using strpos function we can find a character in a string using php function [...]]]></description>
		<link>http://oneanall.com/php/2010/06/09/strpos-function-to-check-character-in-string-using-php/</link>
			</item>
	<item>
		<title>how to chk a character in a string using php</title>
		<description><![CDATA[Hi here i am writing a function to chk whether a character in string exist or not using php suppose i would like to find : in string so chk this out $username = &#8217;mrphpguru:aphp coder&#8217;; $pos = strpos($username, &#8221;!&#8221;); if ($pos == -1) { print Please &#8216;don&#8217;t put : in your usernames&#8217;; } else { print &#8217;No special character in the string.Thanks&#8217;; } So using strpos function we [...]]]></description>
		<link>http://oneanall.com/php/2010/06/09/how-to-chk-a-character-in-a-string-using-php/</link>
			</item>
	<item>
		<title>How to remove extra spaces from the middle of a string</title>
		<description><![CDATA[Strip extra spaces from the middle of a string Hi php code here is a simple code or function to remove all extra space from the string using php &#60;? $str = &#8221;Hi   I am    mrphpguru a php         programmer to             develop any webiste         [...]]]></description>
		<link>http://oneanall.com/php/2010/06/07/how-to-removestrip-extra-spaces-from-the-middle-of-a-string/</link>
			</item>
	<item>
		<title>how to convert all video file to flv using php</title>
		<description><![CDATA[So, as I’ve written in an earlier article on how to install FFMPEG on your server, while there are those who probably use a “YouTube Clone” script, there might be those who want to create their own using FFMPEG &#38; PHP. FLV is the most widely used type of codec that runs on most Flash [...]]]></description>
		<link>http://oneanall.com/php/2010/06/05/how-to-convert-all-video-file-to-flv-using-php/</link>
			</item>
	<item>
		<title>HI i am chking TweetDeck  soft&#8230;</title>
		<description><![CDATA[HI i am chking TweetDeck software.thanks]]></description>
		<link>http://oneanall.com/php/2010/06/01/hi-i-am-chking-tweetdeck-soft/</link>
			</item>
	<item>
		<title>I just downloaded the @iamtrav&#8230;</title>
		<description><![CDATA[I just downloaded the @iamtravisporter #ProudToBeAProblem mixtape. GET YOURS HERE http://bit.ly/proudtobeaproblem]]></description>
		<link>http://oneanall.com/php/2010/05/31/i-just-downloaded-the-iamtrav/</link>
			</item>
	<item>
		<title>RT @oneanallsms bouquet of lov&#8230;</title>
		<description><![CDATA[RT @oneanallsms bouquet of love -Anniversary SMS http://bit.ly/9OXRS7]]></description>
		<link>http://oneanall.com/php/2010/05/23/rt-oneanallsms-bouquet-of-lov/</link>
			</item>
	<item>
		<title>GreenField Racergame,games,car&#8230;</title>
		<description><![CDATA[GreenField Racergame,games,car games,bike games,racing games,3d games, free games,2d games,play fr.. http://bit.ly/9M2ZS4]]></description>
		<link>http://oneanall.com/php/2010/05/23/greenfield-racergamegamescar/</link>
			</item>
	<item>
		<title>RT @oneanallsms Bret Michaels &#8230;</title>
		<description><![CDATA[RT @oneanallsms Bret Michaels – Story of My Life http://bit.ly/9bLYS5]]></description>
		<link>http://oneanall.com/php/2010/05/23/rt-oneanallsms-bret-michaels/</link>
			</item>
	<item>
		<title>get random value and key from array uisng php</title>
		<description><![CDATA[get random value and key from array uisng php I have written a function to get the set of random key and value from the array. function random_array_element(&#38;$a){ mt_srand((double)microtime()*1000000); // get all array keys: $k = array_keys($a); //print_r($k); // find a random array key: $r = mt_rand(0, count($k)-1); $rk = $k[$r]; // return the random [...]]]></description>
		<link>http://oneanall.com/php/2010/05/23/get-random-value-and-key-from-array-uisng-php/</link>
			</item>
	<item>
		<title>Payment Gateway Integrate &#8211; Plimus</title>
		<description><![CDATA[Payment Gateway Integrate &#8211; Plimus To integrate Plimus first we need to create an account. using our account we can create products and contract in the products. we can define number of contract in a single product. You can define products and contract either of recurring type or of non-recurring type too. Here is a [...]]]></description>
		<link>http://oneanall.com/php/2010/05/22/payment-gateway-integrate-plimus/</link>
			</item>
	<item>
		<title>RT @tweetmeme Dr. Martin Henry&#8230;</title>
		<description><![CDATA[RT @tweetmeme Dr. Martin Henry Fischer &#8211; Quotes of the Day &#8211; Modern Drugs &#124; directory of love sms,.. http://bit.ly/asnDgX]]></description>
		<link>http://oneanall.com/php/2010/05/21/rt-tweetmeme-dr-martin-henry/</link>
			</item>
	<item>
		<title>RT @oneanallsms 18 Similaritie&#8230;</title>
		<description><![CDATA[RT @oneanallsms 18 Similarities Between Women and Computers http://bit.ly/bFaMAX]]></description>
		<link>http://oneanall.com/php/2010/05/21/rt-oneanallsms-18-similaritie/</link>
			</item>
	<item>
		<title>RT @oneanallsms &#8220;It’s easier&#8230;</title>
		<description><![CDATA[RT @oneanallsms &#8220;It’s easier to leap if you’re already dancing.&#8221; – Rain Bojangles http://bit.ly/byy5VO]]></description>
		<link>http://oneanall.com/php/2010/05/21/rt-oneanallsms-it%e2%80%99s-easier/</link>
			</item>
	<item>
		<title>Uploading Files with Progress Bar using jQuery &amp; MooTools</title>
		<description><![CDATA[Uploading Files with Progress Bar using jQuery &#38; MooTools Uploadify is a JQuery Plugin that allows you to easily upload multiple files on your site without needing to reload the page. The script requires Flash and any backend development language. A progress bar is shown while uploading the file(s). The plugin can be used in [...]]]></description>
		<link>http://oneanall.com/php/2010/05/21/uploading-files-with-progress-bar-using-jquery-mootools/</link>
			</item>
	<item>
		<title>40 Fresh &amp; Beautiful Examples of Websites With Large Backgrounds</title>
		<description><![CDATA[Using large sized pictures or illustrations as your website’s background adds a great visual appeal to your website’s design. Many web designers use large images as backgrounds as more and more users are now opting for high resolution monitors and high speed internet connections. Here’s a showcase of 40 Fresh and amazing websites that are [...]]]></description>
		<link>http://oneanall.com/php/2010/05/21/40-fresh-beautiful-examples-of-websites-with-large-backgrounds/</link>
			</item>
	<item>
		<title>Quick &amp; Easy Way to Implement Drag n Share With jQuery</title>
		<description><![CDATA[You must have seen the drag to share functionality on Mashable that lets visitors share the content on popular social networks intuitively. Just drag one of the images in an article and you’ll be able to share the article on your favorite social network by dropping the dragged image over its icon. Even, Nettuts has [...]]]></description>
		<link>http://oneanall.com/php/2010/05/21/quick-easy-way-to-implement-drag-n-share-with-jquery/</link>
			</item>
	<item>
		<title>Tips to Write Better CSS Code</title>
		<description><![CDATA[CSS is a language that is not difficult to master, but if you use it for a large project, it can be very difficult to manage if you do not follow a defined approach while writing CSS code. Here are few tips that will help you write better and easy to manage CSS code. 1. [...]]]></description>
		<link>http://oneanall.com/php/2010/05/21/tips-to-write-better-css-code/</link>
			</item>
</channel>
</rss>

<!-- Dynamic page generated in 1.543 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2012-02-05 07:44:44 -->

