<?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>PHPSuperBLOG &#187; HTML</title>
	<atom:link href="http://www.phpsuperblog.com/category/html/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.phpsuperblog.com</link>
	<description>Learn PHP Together</description>
	<lastBuildDate>Fri, 30 Jul 2010 07:26:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>HTML form</title>
		<link>http://www.phpsuperblog.com/html/html-form/</link>
		<comments>http://www.phpsuperblog.com/html/html-form/#comments</comments>
		<pubDate>Mon, 28 Apr 2008 12:41:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML form]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=13</guid>
		<description><![CDATA[In most of the operations, we have to get some data from the user and use PHP code to process those data. HTML form provides an easy way for the user to input data. Cases such as login page, member registration page. Put the HTML form where you like it to appear in the body [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/html/html-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML form &#8211; Password Text Field</title>
		<link>http://www.phpsuperblog.com/html/html-form-password-text-field/</link>
		<comments>http://www.phpsuperblog.com/html/html-form-password-text-field/#comments</comments>
		<pubDate>Tue, 17 Jun 2008 04:22:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Encryption]]></category>
		<category><![CDATA[HTML form]]></category>
		<category><![CDATA[HTML form element]]></category>
		<category><![CDATA[Password]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=59</guid>
		<description><![CDATA[In cases like login system, the HTML form should contains a text field for the user to type in the password. But when the user types in the password, other might see the password from behind the user. To avoid from this happening, a password text field is needed. A password text field works when [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/html/html-form-password-text-field/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML form &#8211; submit to a new window</title>
		<link>http://www.phpsuperblog.com/html/html-form-submit-to-a-new-window/</link>
		<comments>http://www.phpsuperblog.com/html/html-form-submit-to-a-new-window/#comments</comments>
		<pubDate>Tue, 08 Jul 2008 07:36:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Display]]></category>
		<category><![CDATA[HTML form]]></category>
		<category><![CDATA[HTML form element]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Redirect]]></category>
		<category><![CDATA[Submit-button]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=63</guid>
		<description><![CDATA[We use HTML form a lot for the user to input data and process those data from a PHP file, but with the standard code of a HTML form: &#60;form method=&#34;post&#34; name=&#34;bus&#34; action=&#34;afile.php&#34;&#62; &#60;input type=&#34;text&#34; name=&#34;atext&#34; /&#62; &#60;input type=&#34;submit&#34; value=&#34;submit&#34;/&#62; &#60;/form&#62; It will direct us to the php file in the same window and the [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/html/html-form-submit-to-a-new-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML form element &#8211; Check box</title>
		<link>http://www.phpsuperblog.com/html/html-form-element-check-box/</link>
		<comments>http://www.phpsuperblog.com/html/html-form-element-check-box/#comments</comments>
		<pubDate>Fri, 30 May 2008 02:56:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Check-box]]></category>
		<category><![CDATA[HTML form]]></category>
		<category><![CDATA[HTML form element]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=50</guid>
		<description><![CDATA[In HTML form, sometimes you might like to let your user to select an option from your pre-made list. This is to avoid them from typing in a value which is not what you want them to input. In this case HTML form element &#8211; radio buttons could do the job, but what if in [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/html/html-form-element-check-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML form element &#8211; Drop down menu</title>
		<link>http://www.phpsuperblog.com/html/html-form-element-drop-down-menu/</link>
		<comments>http://www.phpsuperblog.com/html/html-form-element-drop-down-menu/#comments</comments>
		<pubDate>Fri, 02 May 2008 08:38:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Drop-down-menu]]></category>
		<category><![CDATA[HTML form]]></category>
		<category><![CDATA[HTML form element]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=15</guid>
		<description><![CDATA[I often like to use drop down menu for the users to input data because it can restrict the choices from the users and can avoid them from making typo mistakes. It is simple to implement and the codes are: &#60;select name=&#34;select1&#34;&#62; &#60;option value=&#34;1&#34;&#62;1&#60;/option&#62; &#60;option value=&#34;2&#34;&#62;2&#60;/option&#62; &#60;option value=&#34;3&#34;&#62;3&#60;/option&#62; &#60;/select&#62; The codes give: 1 2 3 [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/html/html-form-element-drop-down-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML form element &#8211; Radio button</title>
		<link>http://www.phpsuperblog.com/html/html-form-element-radio-button/</link>
		<comments>http://www.phpsuperblog.com/html/html-form-element-radio-button/#comments</comments>
		<pubDate>Sat, 03 May 2008 04:09:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML form]]></category>
		<category><![CDATA[HTML form element]]></category>
		<category><![CDATA[Radio-button]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=16</guid>
		<description><![CDATA[Like drop down menu, radio button element almost work the same but allows the users to see all the selections once the web page loads. I use the radio button for member registration area in my past work to let them to choose things such as gender or age group etc. Here is an example: [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/html/html-form-element-radio-button/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML form element &#8211; Text field and Submit button</title>
		<link>http://www.phpsuperblog.com/html/html-form-element-textfield-and-submit-buttom/</link>
		<comments>http://www.phpsuperblog.com/html/html-form-element-textfield-and-submit-buttom/#comments</comments>
		<pubDate>Thu, 01 May 2008 08:02:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[HTML form]]></category>
		<category><![CDATA[HTML form element]]></category>
		<category><![CDATA[Submit-button]]></category>
		<category><![CDATA[Text-field]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=14</guid>
		<description><![CDATA[HTML form element – text field, as its name says, it is for inputting texts, examples like name, age or password. The code for the text field within a HTML form is like this: &#60;form name=&#34;form1&#34; method=&#34;post&#34; action=&#34;test.php&#34;&#62; &#60;input type=&#34;text&#34; name=&#34;textfield1&#34; /&#62; &#60;/form&#62; The code above would generate a form and a text field named [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/html/html-form-element-textfield-and-submit-buttom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML form in a table</title>
		<link>http://www.phpsuperblog.com/html/html-form-in-a-table/</link>
		<comments>http://www.phpsuperblog.com/html/html-form-in-a-table/#comments</comments>
		<pubDate>Sun, 18 May 2008 03:50:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[Formatting]]></category>
		<category><![CDATA[HTML form]]></category>
		<category><![CDATA[HTML form element]]></category>
		<category><![CDATA[Table]]></category>
		<category><![CDATA[Text-field]]></category>

		<guid isPermaLink="false">http://www.phpsuperblog.com/?p=32</guid>
		<description><![CDATA[Sometimes, you might like to have the HTML looks neat and tidy. You can use a table to hold all of the HTML elements in it. Here I have created an example to show you a good way to do it. First, we have to create the HTML form because we want the whole table [...]]]></description>
		<wfw:commentRss>http://www.phpsuperblog.com/html/html-form-in-a-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
