<?xml version="1.0"?><rss version="2.0">
       <channel>
         <title>Programmer Kingdom</title>
		 <link>http://www.programmerkingdom.com/categories/94/user-interface-.html</link>
		 <description>Programmer Kingdom</description>
		 <image>
		   <url>http://www.programmerkingdom.com/images/logo.jpg</url>
		   <link>http://www.programmerkingdom.com/</link>
		 </image>
		 <item>
		   <title>Alternating row colors</title>
		   <link>http://www.programmerkingdom.com/view/425/alternating-row-colors.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
Alternating row colors is a very good way to
make big tables more ergonomic and esthetic. Script and explanation
here. Also explains the modulus operator.

Alternating row colors

Alternating row colors is a very
good way to make big tables more ergonomic and esthetic. Script and
explanation here. Also explains the modulus operator.


You can alternate row colors in a table, just like...........</span>]]></description>
		   <pubDate>2010-04-02T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>Browser-Dependent Stylesheets</title>
		   <link>http://www.programmerkingdom.com/view/426/browser-dependent-stylesheets.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
Simply copy the below code into the head of
your PHP document. Remember, the page your working on must have a .php
extension, and your server must be running PHP. Like in the above code,
you need to specify the path of the two stylesheets. 

Browser-Dependent Stylesheets

Learn how to make a Browser-Dependent Stylesheets using PHP


Simply copy the below code into the head of your PHP...........</span>]]></description>
		   <pubDate>2010-04-02T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>PHP Easy Site Navigation</title>
		   <link>http://www.programmerkingdom.com/view/427/php-easy-site-navigation.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
PHP Easy Site Navigation is a tutorial that
will show you how to have easy navigation for your site. PHP Easy Site
Navigation tutorial will expect you to work with a simple existing web
pages.

PHP Easy Site Navigation

This tutorial will show you how to use http://example.com/index.php?p=whatever as navigation for your site.


First you have to create a main page, with a content area ...........</span>]]></description>
		   <pubDate>2010-04-02T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>Paging MySQL Results</title>
		   <link>http://www.programmerkingdom.com/view/428/paging-mysql-results.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
20, 50 or even 100 results on one page takes
too long to load and can also look messy. Lets get started on putting
your MySQL Database results on sepearte pages with PHP.

Showing MySQL Results In Pages

20, 50 or even 100 results on one page takes too long to load and
can also look messy. Lets get started on putting your MySQL Database
results on sepearte pages with PHP. 


I am assu...........</span>]]></description>
		   <pubDate>2010-04-02T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>Directory Listing</title>
		   <link>http://www.programmerkingdom.com/view/429/directory-listing.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
Have you ever wanted to list the contents of
your directory in a html file or a PHP file? All you have to do is
follow these steps listed in this tutorial. Its a great way to list
what is in a directly quickly and effectively.


Directory Listing 


Have you ever wanted to list the contents of your directory in a
html file or a PHP file? All you have to do is follow these
steps:

Pa...........</span>]]></description>
		   <pubDate>2010-04-02T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>Scrollbar Generator</title>
		   <link>http://www.programmerkingdom.com/view/430/scrollbar-generator.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
Lets walk through this a bit.
We created a form action which will take the variables into the make.php.
Next,we created a input type= text boxes for all the fields,which will hold the variables.


Scrollbar
Generator 
First, create a new PHP file,and name it create. In it,you are
going to make several input text boxes. One for each scroll
bar content. So all the Characteristics of scrol...........</span>]]></description>
		   <pubDate>2010-04-02T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>Get the Current Page URL</title>
		   <link>http://www.programmerkingdom.com/view/432/get-the-current-page-url.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
Sometimes, you might want to get the current
page URL that is shown in the browser URL window. For example if you
want to let your visitors submit a blog post to Digg you need to get
that same exact URL.


	
		
			
			PHP: How to Get the Current Page URL
									
		
	



Sometimes, you might want to get the current page URL that is shown
in the browser URL window. For example i...........</span>]]></description>
		   <pubDate>2010-04-19T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>Using Paging In PHP</title>
		   <link>http://www.programmerkingdom.com/view/433/using-paging-in-php.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
Paging means showing your query result in
multiple pages instead of just put them all in one long page. To show
the result of a query in several pages first you need to know how many
rows you have and how many rows per page you want to show. 

Paging Using PHP

Ever use a Search Engine? I'm sure you have, lots of time. When Search Engines
found thousands of results for a keyword do they ...........</span>]]></description>
		   <pubDate>2010-04-02T00:00:00-07:00</pubDate>
		 </item>
		 <item>
		   <title>Using Paging In PHP Part 2</title>
		   <link>http://www.programmerkingdom.com/view/434/using-paging-in-php-part-2.html</link>
		   <description><![CDATA[<a href="http://twitter.com/"></a><span>
When there's more than one column involved in
paging there isn't much that we need to modify. We only need to decide
how to count the total number of rows we have in the table. To learn
more read up on paging here.

Paging Using PHP and MySQL (Part II)


When there's more than one column involved in paging there isn't much that 
we need to modify. We only need to decide how to count the...........</span>]]></description>
		   <pubDate>2010-04-02T00:00:00-07:00</pubDate>
		 </item></channel>
	 </rss>
