<?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>TUTORIAL &#187; HTML Basics</title>
	<atom:link href="http://phpforms.net/tutorial/category/html-basics/feed" rel="self" type="application/rss+xml" />
	<link>http://phpforms.net/tutorial</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 17 Oct 2011 11:14:02 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>HTML URL Encoding  Reference</title>
		<link>http://phpforms.net/tutorial/html-basics/html-url-encoding-reference.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/html-url-encoding-reference.html#comments</comments>
		<pubDate>Wed, 14 Apr 2010 09:53:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?p=3464</guid>
		<description><![CDATA[
URL encoding  converts characters into a format that can be safely transmitted over the  Internet.
URL - Uniform Resource Locator
Web browsers request pages  from web servers by using a URL.
The URL is the address of a  web page like: http://www.conkurent.com
URL Encoding
URLs can only be sent over  the Internet using the ASCII [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>URL encoding  converts characters into a format that can be safely transmitted over the  Internet.</dd>
<h2>URL - Uniform Resource Locator</h2>
<dd>Web browsers request pages  from web servers by using a URL.</dd>
<dd>The URL is the address of a  web page like: <a href="http://www.conkurent.com">http://www.conkurent.com</a></dd>
<h2>URL Encoding</h2>
<dd>URLs can only be sent over  the Internet using the ASCII character-set</dd>
<dd>Since URLs often contains  characters outside the ASCII set, the URL has to be converted. URL encoding  converts the URL into a valid ASCII format.</dd>
<dd>URL encoding replaces  unsafe ASCII characters with &quot;%&quot; followed by two hexadecimal digits  corresponding to the character values in the ISO-8859-1 character-set.</dd>
<dd>URLs cannot contain spaces.  URL encoding normally replaces a space with a + sign.</dd>
<h2>Try It Yourself</h2>
<dd>If you click the  &quot;Submit&quot; button below, the browser will URL encode the input before  it is sent to the server. A page at the server will display the received input.</dd>
<dd>
<form method="get" action="http://www.w3schools.com/tags/html_form_submit.asp" target="_blank" name="input">
<input type="text" size="30" name="text" value="Hello Simon">
<input type="submit" value="Submit">
</form>
</dd>
<dd>Try some other input and  click Submit again.</dd>
<h2>URL Encoding Functions</h2>
<dd>In JavaScript, PHP, and ASP  there are functions that can be used to URL encode a string.</dd>
<dd>In JavaScript you can use  the encodeURI() function. PHP has the rawurlencode() function and ASP has the  Server.URLEncode() function.</dd>
<dd>Click the &quot;URL  Encode&quot; button to see how the JavaScript function encodes the text.</dd>
<dd>
<form method="get" action="http://www.w3schools.com/tags/html_form_submit.asp" target="_blank" name="input">
<input type="text" size="30" name="text" value="Hello Simon">
</form>
</dd>
<dd><strong>Note: </strong>The JavaScript function encodes  space as %20.</dd>
<h2>URL Encoding  Reference</h2>
<dd><TABLE ALIGN="CENTER" font-size="1.1em" WIDTH="100%"cellpadding="0" cellspacing="0" border="0" class="features"></p>
<tr>
<td><strong>ASCII Character</strong></td>
<td><strong>URL-encoding</strong></td>
</tr>
<tr>
<td>space</td>
<td>%20</td>
</tr>
<tr>
<td>!</td>
<td>%21</td>
</tr>
<tr>
<td>&quot;</td>
<td>%22</td>
</tr>
<tr>
<td>#</td>
<td>%23</td>
</tr>
<tr>
<td>$</td>
<td>%24</td>
</tr>
<tr>
<td>%</td>
<td>%25</td>
</tr>
<tr>
<td>&amp;</td>
<td>%26</td>
</tr>
<tr>
<td>'</td>
<td>%27</td>
</tr>
<tr>
<td>(</td>
<td>%28</td>
</tr>
<tr>
<td>)</td>
<td>%29</td>
</tr>
<tr>
<td>*</td>
<td>%2A</td>
</tr>
<tr>
<td>+</td>
<td>%2B</td>
</tr>
<tr>
<td>,</td>
<td>%2C</td>
</tr>
<tr>
<td>-</td>
<td>%2D</td>
</tr>
<tr>
<td>.</td>
<td>%2E</td>
</tr>
<tr>
<td>/</td>
<td>%2F</td>
</tr>
<tr>
<td>0</td>
<td>%30</td>
</tr>
<tr>
<td>1</td>
<td>%31</td>
</tr>
<tr>
<td>2</td>
<td>%32</td>
</tr>
<tr>
<td>3</td>
<td>%33</td>
</tr>
<tr>
<td>4</td>
<td>%34</td>
</tr>
<tr>
<td>5</td>
<td>%35</td>
</tr>
<tr>
<td>6</td>
<td>%36</td>
</tr>
<tr>
<td>7</td>
<td>%37</td>
</tr>
<tr>
<td>8</td>
<td>%38</td>
</tr>
<tr>
<td>9</td>
<td>%39</td>
</tr>
<tr>
<td>:</td>
<td>%3A</td>
</tr>
<tr>
<td>;</td>
<td>%3B</td>
</tr>
<tr>
<td>&lt;&nbsp;</td>
<td>%3C</td>
</tr>
<tr>
<td>=</td>
<td>%3D</td>
</tr>
<tr>
<td>&gt;&nbsp;</td>
<td>%3E</td>
</tr>
<tr>
<td>?</td>
<td>%3F</td>
</tr>
<tr>
<td>@</td>
<td>%40</td>
</tr>
<tr>
<td>A</td>
<td>%41</td>
</tr>
<tr>
<td>B</td>
<td>%42</td>
</tr>
<tr>
<td>C</td>
<td>%43</td>
</tr>
<tr>
<td>D</td>
<td>%44</td>
</tr>
<tr>
<td>E</td>
<td>%45</td>
</tr>
<tr>
<td>F</td>
<td>%46</td>
</tr>
<tr>
<td>G</td>
<td>%47</td>
</tr>
<tr>
<td>H</td>
<td>%48</td>
</tr>
<tr>
<td>I</td>
<td>%49</td>
</tr>
<tr>
<td>J</td>
<td>%4A</td>
</tr>
<tr>
<td>K</td>
<td>%4B</td>
</tr>
<tr>
<td>L</td>
<td>%4C</td>
</tr>
<tr>
<td>M</td>
<td>%4D</td>
</tr>
<tr>
<td>N</td>
<td>%4E</td>
</tr>
<tr>
<td>O</td>
<td>%4F</td>
</tr>
<tr>
<td>P</td>
<td>%50</td>
</tr>
<tr>
<td>Q</td>
<td>%51</td>
</tr>
<tr>
<td>R</td>
<td>%52</td>
</tr>
<tr>
<td>S</td>
<td>%53</td>
</tr>
<tr>
<td>T</td>
<td>%54</td>
</tr>
<tr>
<td>U</td>
<td>%55</td>
</tr>
<tr>
<td>V</td>
<td>%56</td>
</tr>
<tr>
<td>W</td>
<td>%57</td>
</tr>
<tr>
<td>X</td>
<td>%58</td>
</tr>
<tr>
<td>Y</td>
<td>%59</td>
</tr>
<tr>
<td>Z</td>
<td>%5A</td>
</tr>
<tr>
<td>[</td>
<td>%5B</td>
</tr>
<tr>
<td>\</td>
<td>%5C</td>
</tr>
<tr>
<td>]</td>
<td>%5D</td>
</tr>
<tr>
<td>^</td>
<td>%5E</td>
</tr>
<tr>
<td>_</td>
<td>%5F</td>
</tr>
<tr>
<td>`</td>
<td>%60</td>
</tr>
<tr>
<td>a</td>
<td>%61</td>
</tr>
<tr>
<td>b</td>
<td>%62</td>
</tr>
<tr>
<td>c</td>
<td>%63</td>
</tr>
<tr>
<td>d</td>
<td>%64</td>
</tr>
<tr>
<td>e</td>
<td>%65</td>
</tr>
<tr>
<td>f</td>
<td>%66</td>
</tr>
<tr>
<td>g</td>
<td>%67</td>
</tr>
<tr>
<td>h</td>
<td>%68</td>
</tr>
<tr>
<td>i</td>
<td>%69</td>
</tr>
<tr>
<td>j</td>
<td>%6A</td>
</tr>
<tr>
<td>k</td>
<td>%6B</td>
</tr>
<tr>
<td>l</td>
<td>%6C</td>
</tr>
<tr>
<td>m</td>
<td>%6D</td>
</tr>
<tr>
<td>n</td>
<td>%6E</td>
</tr>
<tr>
<td>o</td>
<td>%6F</td>
</tr>
<tr>
<td>p</td>
<td>%70</td>
</tr>
<tr>
<td>q</td>
<td>%71</td>
</tr>
<tr>
<td>r</td>
<td>%72</td>
</tr>
<tr>
<td>s</td>
<td>%73</td>
</tr>
<tr>
<td>t</td>
<td>%74</td>
</tr>
<tr>
<td>u</td>
<td>%75</td>
</tr>
<tr>
<td>v</td>
<td>%76</td>
</tr>
<tr>
<td>w</td>
<td>%77</td>
</tr>
<tr>
<td>x</td>
<td>%78</td>
</tr>
<tr>
<td>y</td>
<td>%79</td>
</tr>
<tr>
<td>z</td>
<td>%7A</td>
</tr>
<tr>
<td>{</td>
<td>%7B</td>
</tr>
<tr>
<td>|</td>
<td>%7C</td>
</tr>
<tr>
<td>}</td>
<td>%7D</td>
</tr>
<tr>
<td>~</td>
<td>%7E</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>%7F</td>
</tr>
<tr>
<td>€</td>
<td>%80</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>%81</td>
</tr>
<tr>
<td>‚</td>
<td>%82</td>
</tr>
<tr>
<td>ƒ</td>
<td>%83</td>
</tr>
<tr>
<td>„</td>
<td>%84</td>
</tr>
<tr>
<td>…</td>
<td>%85</td>
</tr>
<tr>
<td>†</td>
<td>%86</td>
</tr>
<tr>
<td>‡</td>
<td>%87</td>
</tr>
<tr>
<td>ˆ</td>
<td>%88</td>
</tr>
<tr>
<td>‰</td>
<td>%89</td>
</tr>
<tr>
<td>Š</td>
<td>%8A</td>
</tr>
<tr>
<td>‹</td>
<td>%8B</td>
</tr>
<tr>
<td>Œ</td>
<td>%8C</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>%8D</td>
</tr>
<tr>
<td>Ž</td>
<td>%8E</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>%8F</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>%90</td>
</tr>
<tr>
<td>‘</td>
<td>%91</td>
</tr>
<tr>
<td>’</td>
<td>%92</td>
</tr>
<tr>
<td>“</td>
<td>%93</td>
</tr>
<tr>
<td>”</td>
<td>%94</td>
</tr>
<tr>
<td>•</td>
<td>%95</td>
</tr>
<tr>
<td>–</td>
<td>%96</td>
</tr>
<tr>
<td>—</td>
<td>%97</td>
</tr>
<tr>
<td>˜</td>
<td>%98</td>
</tr>
<tr>
<td>™</td>
<td>%99</td>
</tr>
<tr>
<td>š</td>
<td>%9A</td>
</tr>
<tr>
<td>›</td>
<td>%9B</td>
</tr>
<tr>
<td>œ</td>
<td>%9C</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>%9D</td>
</tr>
<tr>
<td>ž</td>
<td>%9E</td>
</tr>
<tr>
<td>Ÿ</td>
<td>%9F</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>%A0</td>
</tr>
<tr>
<td>¡</td>
<td>%A1</td>
</tr>
<tr>
<td>¢</td>
<td>%A2</td>
</tr>
<tr>
<td>£</td>
<td>%A3</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>%A4</td>
</tr>
<tr>
<td>¥</td>
<td>%A5</td>
</tr>
<tr>
<td>|</td>
<td>%A6</td>
</tr>
<tr>
<td>§</td>
<td>%A7</td>
</tr>
<tr>
<td>¨</td>
<td>%A8</td>
</tr>
<tr>
<td>©</td>
<td>%A9</td>
</tr>
<tr>
<td>ª</td>
<td>%AA</td>
</tr>
<tr>
<td>«</td>
<td>%AB</td>
</tr>
<tr>
<td>¬</td>
<td>%AC</td>
</tr>
<tr>
<td>¯</td>
<td>%AD</td>
</tr>
<tr>
<td>®</td>
<td>%AE</td>
</tr>
<tr>
<td>¯</td>
<td>%AF</td>
</tr>
<tr>
<td>°</td>
<td>%B0</td>
</tr>
<tr>
<td>±</td>
<td>%B1</td>
</tr>
<tr>
<td>²</td>
<td>%B2</td>
</tr>
<tr>
<td>³</td>
<td>%B3</td>
</tr>
<tr>
<td>´</td>
<td>%B4</td>
</tr>
<tr>
<td>µ</td>
<td>%B5</td>
</tr>
<tr>
<td>¶</td>
<td>%B6</td>
</tr>
<tr>
<td>·</td>
<td>%B7</td>
</tr>
<tr>
<td>¸</td>
<td>%B8</td>
</tr>
<tr>
<td>¹</td>
<td>%B9</td>
</tr>
<tr>
<td>º</td>
<td>%BA</td>
</tr>
<tr>
<td>»</td>
<td>%BB</td>
</tr>
<tr>
<td>¼</td>
<td>%BC</td>
</tr>
<tr>
<td>½</td>
<td>%BD</td>
</tr>
<tr>
<td>¾</td>
<td>%BE</td>
</tr>
<tr>
<td>¿</td>
<td>%BF</td>
</tr>
<tr>
<td>À</td>
<td>%C0</td>
</tr>
<tr>
<td>Á</td>
<td>%C1</td>
</tr>
<tr>
<td>Â</td>
<td>%C2</td>
</tr>
<tr>
<td>Ã</td>
<td>%C3</td>
</tr>
<tr>
<td>Ä</td>
<td>%C4</td>
</tr>
<tr>
<td>Å</td>
<td>%C5</td>
</tr>
<tr>
<td>Æ</td>
<td>%C6</td>
</tr>
<tr>
<td>Ç</td>
<td>%C7</td>
</tr>
<tr>
<td>È</td>
<td>%C8</td>
</tr>
<tr>
<td>É</td>
<td>%C9</td>
</tr>
<tr>
<td>Ê</td>
<td>%CA</td>
</tr>
<tr>
<td>Ë</td>
<td>%CB</td>
</tr>
<tr>
<td>Ì</td>
<td>%CC</td>
</tr>
<tr>
<td>Í</td>
<td>%CD</td>
</tr>
<tr>
<td>Î</td>
<td>%CE</td>
</tr>
<tr>
<td>Ï</td>
<td>%CF</td>
</tr>
<tr>
<td>Ð</td>
<td>%D0</td>
</tr>
<tr>
<td>Ñ</td>
<td>%D1</td>
</tr>
<tr>
<td>Ò</td>
<td>%D2</td>
</tr>
<tr>
<td>Ó</td>
<td>%D3</td>
</tr>
<tr>
<td>Ô</td>
<td>%D4</td>
</tr>
<tr>
<td>Õ</td>
<td>%D5</td>
</tr>
<tr>
<td>Ö</td>
<td>%D6</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>%D7</td>
</tr>
<tr>
<td>Ø</td>
<td>%D8</td>
</tr>
<tr>
<td>Ù</td>
<td>%D9</td>
</tr>
<tr>
<td>Ú</td>
<td>%DA</td>
</tr>
<tr>
<td>Û</td>
<td>%DB</td>
</tr>
<tr>
<td>Ü</td>
<td>%DC</td>
</tr>
<tr>
<td>Ý</td>
<td>%DD</td>
</tr>
<tr>
<td>Þ</td>
<td>%DE</td>
</tr>
<tr>
<td>ß</td>
<td>%DF</td>
</tr>
<tr>
<td>à</td>
<td>%E0</td>
</tr>
<tr>
<td>á</td>
<td>%E1</td>
</tr>
<tr>
<td>â</td>
<td>%E2</td>
</tr>
<tr>
<td>ã</td>
<td>%E3</td>
</tr>
<tr>
<td>ä</td>
<td>%E4</td>
</tr>
<tr>
<td>å</td>
<td>%E5</td>
</tr>
<tr>
<td>æ</td>
<td>%E6</td>
</tr>
<tr>
<td>ç</td>
<td>%E7</td>
</tr>
<tr>
<td>è</td>
<td>%E8</td>
</tr>
<tr>
<td>é</td>
<td>%E9</td>
</tr>
<tr>
<td>ê</td>
<td>%EA</td>
</tr>
<tr>
<td>ë</td>
<td>%EB</td>
</tr>
<tr>
<td>ì</td>
<td>%EC</td>
</tr>
<tr>
<td>í</td>
<td>%ED</td>
</tr>
<tr>
<td>î</td>
<td>%EE</td>
</tr>
<tr>
<td>ï</td>
<td>%EF</td>
</tr>
<tr>
<td>ð</td>
<td>%F0</td>
</tr>
<tr>
<td>ñ</td>
<td>%F1</td>
</tr>
<tr>
<td>ò</td>
<td>%F2</td>
</tr>
<tr>
<td>ó</td>
<td>%F3</td>
</tr>
<tr>
<td>ô</td>
<td>%F4</td>
</tr>
<tr>
<td>õ</td>
<td>%F5</td>
</tr>
<tr>
<td>ö</td>
<td>%F6</td>
</tr>
<tr>
<td>÷</td>
<td>%F7</td>
</tr>
<tr>
<td>ø</td>
<td>%F8</td>
</tr>
<tr>
<td>ù</td>
<td>%F9</td>
</tr>
<tr>
<td>ú</td>
<td>%FA</td>
</tr>
<tr>
<td>û</td>
<td>%FB</td>
</tr>
<tr>
<td>ü</td>
<td>%FC</td>
</tr>
<tr>
<td>ý</td>
<td>%FD</td>
</tr>
<tr>
<td>þ</td>
<td>%FE</td>
</tr>
<tr>
<td>ÿ</td>
<td>%FF</td>
</tr>
</table>
</dd>
<p></p>
<h2>URL Encoding  Reference</h2>
<dd>The ASCII device control  characters %00-%1f were originally designed to control hardware devices. Control  characters have nothing to do inside a URL.</dd>
<dd><TABLE ALIGN="CENTER" font-size="1.1em" WIDTH="100%"cellpadding="0" cellspacing="0" border="0" class="features"></p>
<tr>
<td><strong>ASCII Character</strong></td>
<td><strong>Description</strong></td>
<td><strong>URL-encoding</strong></td>
</tr>
<tr>
<td>NUL</td>
<td>null character</td>
<td>%00</td>
</tr>
<tr>
<td>SOH</td>
<td>start of header</td>
<td>%01</td>
</tr>
<tr>
<td>STX</td>
<td>start of text</td>
<td>%02</td>
</tr>
<tr>
<td>ETX</td>
<td>end of text</td>
<td>%03</td>
</tr>
<tr>
<td>EOT</td>
<td>end of transmission</td>
<td>%04</td>
</tr>
<tr>
<td>ENQ</td>
<td>enquiry</td>
<td>%05</td>
</tr>
<tr>
<td>ACK</td>
<td>acknowledge</td>
<td>%06</td>
</tr>
<tr>
<td>BEL</td>
<td>bell (ring)</td>
<td>%07</td>
</tr>
<tr>
<td>BS</td>
<td>backspace</td>
<td>%08</td>
</tr>
<tr>
<td>HT</td>
<td>horizontal tab</td>
<td>%09</td>
</tr>
<tr>
<td>LF</td>
<td>line feed</td>
<td>%0A</td>
</tr>
<tr>
<td>VT</td>
<td>vertical tab</td>
<td>%0B</td>
</tr>
<tr>
<td>FF</td>
<td>form feed</td>
<td>%0C</td>
</tr>
<tr>
<td>CR</td>
<td>carriage return</td>
<td>%0D</td>
</tr>
<tr>
<td>SO</td>
<td>shift out</td>
<td>%0E</td>
</tr>
<tr>
<td>SI</td>
<td>shift in</td>
<td>%0F</td>
</tr>
<tr>
<td>DLE</td>
<td>data link escape</td>
<td>%10</td>
</tr>
<tr>
<td>DC1</td>
<td>device control 1</td>
<td>%11</td>
</tr>
<tr>
<td>DC2</td>
<td>device control 2</td>
<td>%12</td>
</tr>
<tr>
<td>DC3</td>
<td>device control 3</td>
<td>%13</td>
</tr>
<tr>
<td>DC4</td>
<td>device control 4</td>
<td>%14</td>
</tr>
<tr>
<td>NAK</td>
<td>negative acknowledge</td>
<td>%15</td>
</tr>
<tr>
<td>SYN</td>
<td>synchronize</td>
<td>%16</td>
</tr>
<tr>
<td>ETB</td>
<td>end transmission block</td>
<td>%17</td>
</tr>
<tr>
<td>CAN</td>
<td>cancel</td>
<td>%18</td>
</tr>
<tr>
<td>EM</td>
<td>end of medium</td>
<td>%19</td>
</tr>
<tr>
<td>SUB</td>
<td>substitute</td>
<td>%1A</td>
</tr>
<tr>
<td>ESC</td>
<td>escape</td>
<td>%1B</td>
</tr>
<tr>
<td>FS</td>
<td>file separator</td>
<td>%1C</td>
</tr>
<tr>
<td>GS</td>
<td>group separator</td>
<td>%1D</td>
</tr>
<tr>
<td>RS</td>
<td>record separator</td>
<td>%1E</td>
</tr>
<tr>
<td>US</td>
<td>unit separator</td>
<td>%1F</td>
</tr>
</table>
</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/html-url-encoding-reference.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTTP Status Messages</title>
		<link>http://phpforms.net/tutorial/html-basics/http-status-messages.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/http-status-messages.html#comments</comments>
		<pubDate>Wed, 14 Apr 2010 09:34:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?p=3460</guid>
		<description><![CDATA[
When a browser  requests a service from a web server, an error might occur.
  This is a list  of HTTP status messages that might be returned:

1xx: Information



      Message:
Description:


100 Continue
Only a    part of the request has been received by the server, but as long as [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>When a browser  requests a service from a web server, an error might occur.<br />
  This is a list  of HTTP status messages that might be returned:
<dd>
<dd><strong>1xx: Information</strong></dd>
<dd><TABLE font-size="1.1em" WIDTH="100%"cellpadding="0" cellspacing="0" border="0" class="features"></p>
<tr>
<td width="40%">
      <strong>Message:</strong></td>
<td width="60%"><strong>Description:</strong></td>
</tr>
<tr>
<td>100 Continue</td>
<td>Only a    part of the request has been received by the server, but as long as it has    not been rejected, the client should continue with the request</td>
</tr>
<tr>
<td>101 Switching Protocols</td>
<td>The server switches protocol </td>
</tr>
</table>
</dd>
<p></p>
<dd><strong>2xx: Successful</strong></dd>
<dd><TABLE font-size="1.1em" WIDTH="100%"cellpadding="0" cellspacing="0" border="0" class="features"></p>
<tr>
<td width="40%">
      <strong>Message:</strong></td>
<td width="60%"><strong>Description:</strong></td>
</tr>
<tr>
<td>200 OK</td>
<td>The request is OK</td>
</tr>
<tr>
<td>201 Created</td>
<td>The    request is complete, and a new resource is created&nbsp; </td>
</tr>
<tr>
<td>202 Accepted</td>
<td>The    request is accepted for processing, but the processing is not complete </td>
</tr>
<tr>
<td>203 Non-authoritative Information</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>204 No Content</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>205 Reset Content</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>206 Partial Content</td>
<td>&nbsp;</td>
</tr>
</table>
</dd>
<p></p>
<dd><strong>3xx: Redirection</strong></dd>
<dd><TABLE font-size="1.1em" WIDTH="100%"cellpadding="0" cellspacing="0" border="0" class="features"></p>
<tr>
<td width="40%">
      <strong>Message:</strong></td>
<td width="60%"><strong>Description:</strong></td>
</tr>
<tr>
<td>300 Multiple Choices</td>
<td>A link    list. The user can select a link and go to that location. Maximum five    addresses &nbsp;</td>
</tr>
<tr>
<td>301 Moved Permanently</td>
<td>The    requested page has moved to a new url&nbsp; </td>
</tr>
<tr>
<td>302 Found</td>
<td>The    requested page has moved temporarily to a new url&nbsp; </td>
</tr>
<tr>
<td>303 See Other</td>
<td>The    requested page can be found under a different url&nbsp; </td>
</tr>
<tr>
<td>304 Not Modified</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>305 Use Proxy</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>306 <em>Unused</em></td>
<td>This code    was used in a previous version. It is no longer used, but the code is    reserved </td>
</tr>
<tr>
<td>307 Temporary Redirect</td>
<td>The    requested page has moved temporarily to a new url </td>
</tr>
</table>
</dd>
<p></p>
<dd><strong>4xx: Client Error</strong></dd>
<dd><TABLE font-size="1.1em" WIDTH="100%"cellpadding="0" cellspacing="0" border="0" class="features"></p>
<tr>
<td width="40%">
      <strong>Message:</strong></td>
<td width="60%"><strong>Description:</strong></td>
</tr>
<tr>
<td>400&nbsp;Bad Request</td>
<td>The    server did not understand the request</td>
</tr>
<tr>
<td>401 Unauthorized</td>
<td>The    requested page needs a username and a password </td>
</tr>
<tr>
<td>402 Payment Required</td>
<td><em>You    can not use this code yet</em></td>
</tr>
<tr>
<td>403 Forbidden</td>
<td>Access is    forbidden to the requested page </td>
</tr>
<tr>
<td>404 Not Found</td>
<td>The    server can not find the requested page </td>
</tr>
<tr>
<td>405 Method Not Allowed</td>
<td>The    method specified in the request is not allowed </td>
</tr>
<tr>
<td>406 Not Acceptable</td>
<td>The    server can only generate a response that is not accepted by the client </td>
</tr>
<tr>
<td>407 Proxy Authentication Required</td>
<td>You must    authenticate with a proxy server before this request can be served </td>
</tr>
<tr>
<td>408 Request Timeout</td>
<td>The    request took longer than the server was prepared to wait </td>
</tr>
<tr>
<td>409 Conflict</td>
<td>The    request could not be completed because of a conflict </td>
</tr>
<tr>
<td>410 Gone</td>
<td>The    requested page is no longer available&nbsp; </td>
</tr>
<tr>
<td>411 Length Required</td>
<td>The    &quot;Content-Length&quot; is not defined. The server will not accept the    request without it&nbsp; </td>
</tr>
<tr>
<td>412 Precondition Failed</td>
<td>The    precondition given in the request evaluated to false by the server </td>
</tr>
<tr>
<td>413 Request Entity Too Large</td>
<td>The    server will not accept the request, because the request entity is too large </td>
</tr>
<tr>
<td>414 Request-url Too Long</td>
<td>The    server will not accept the request, because the url is too long. Occurs when    you convert a &quot;post&quot; request to a &quot;get&quot; request with a    long query information&nbsp; </td>
</tr>
<tr>
<td>415 Unsupported Media Type</td>
<td>The    server will not accept the request, because the media type is not    supported&nbsp; </td>
</tr>
<tr>
<td>416&nbsp;</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>417 Expectation Failed</td>
<td>&nbsp;</td>
</tr>
</table>
</dd>
<p></p>
<dd><strong>5xx: Server Error</strong></dd>
<dd><TABLE font-size="1.1em" WIDTH="100%"cellpadding="0" cellspacing="0" border="0" class="features"></p>
<tr>
<td width="40%">
      <strong>Message:</strong></td>
<td width="60%"><strong>Description:</strong></td>
</tr>
<tr>
<td>500&nbsp;Internal Server Error</td>
<td>The    request was not completed. The server met an unexpected condition</td>
</tr>
<tr>
<td>501 Not Implemented</td>
<td>The    request was not completed. The server did not support the functionality    required </td>
</tr>
<tr>
<td>502 Bad Gateway</td>
<td>The    request was not completed. The server received an invalid response from the    upstream server </td>
</tr>
<tr>
<td>503 Service Unavailable</td>
<td>The    request was not completed. The server is temporarily overloading or down </td>
</tr>
<tr>
<td>504 Gateway Timeout</td>
<td>The    gateway has timed out </td>
</tr>
<tr>
<td>505 HTTP Version Not Supported</td>
<td>The    server does not support the &quot;http protocol&quot; version </td>
</tr>
</table>
</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/http-status-messages.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ISO Language Codes</title>
		<link>http://phpforms.net/tutorial/html-basics/iso-language-codes.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/iso-language-codes.html#comments</comments>
		<pubDate>Wed, 14 Apr 2010 09:17:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?p=3451</guid>
		<description><![CDATA[
The HTML lang attribute can  be used to declare the language of a Web page or a portion of a Web page. This  is meant to assist search engines and browsers.
According to the W3C  recommendation you should declare the primary language for each Web page with  the lang attribute inside the [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>The HTML lang attribute can  be used to declare the language of a Web page or a portion of a Web page. This  is meant to assist search engines and browsers.</dd>
<dd>According to the W3C  recommendation you should declare the primary language for each Web page with  the lang attribute inside the &lt;html&gt; tag, like this:</dd>
<dd>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">html</span> <span style="color: #000066;">lang</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;en&quot;</span>&gt;</span>
...
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">html</span>&gt;</span></pre></td></tr></table></div>

</dd>
<dd>In XHTML, the language is  declared inside the &lt;html&gt; tag as follows:</dd>
<dd>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">html</span> xmlns<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://www.w3.org/1999/xhtml&quot;</span> <span style="color: #000066;">lang</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;en&quot;</span> xml:<span style="color: #000066;">lang</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;en&quot;</span>&gt;</span>
...
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">html</span>&gt;</span></pre></td></tr></table></div>

</dd>
<h2>ISO 639-1  Language Codes</h2>
<dd>ISO 639-1 defines  abbreviations for languages. In HTML and XHTML they can be used in the lang and  xml:lang attributes.</dd>
<dd><TABLE ALIGN="CENTER" font-size="1.1em" WIDTH="100%"cellpadding="0" cellspacing="0" border="0" class="features"></p>
<tr>
<td><strong>Language</strong></td>
<td><strong>ISO Code</strong></td>
</tr>
<tr>
<td>Abkhazian</td>
<td>ab</td>
</tr>
<tr>
<td>Afar</td>
<td>aa</td>
</tr>
<tr>
<td>Afrikaans</td>
<td>af</td>
</tr>
<tr>
<td>Albanian</td>
<td>sq</td>
</tr>
<tr>
<td>Amharic</td>
<td>am</td>
</tr>
<tr>
<td>Arabic</td>
<td>ar</td>
</tr>
<tr>
<td>Armenian</td>
<td>hy</td>
</tr>
<tr>
<td>Assamese</td>
<td>as</td>
</tr>
<tr>
<td>Aymara</td>
<td>ay</td>
</tr>
<tr>
<td>Azerbaijani</td>
<td>az</td>
</tr>
<tr>
<td>Bashkir</td>
<td>ba</td>
</tr>
<tr>
<td>Basque</td>
<td>eu</td>
</tr>
<tr>
<td>Bengali (Bangla)</td>
<td>bn</td>
</tr>
<tr>
<td>Bhutani</td>
<td>dz</td>
</tr>
<tr>
<td>Bihari</td>
<td>bh</td>
</tr>
<tr>
<td>Bislama</td>
<td>bi</td>
</tr>
<tr>
<td>Breton</td>
<td>br</td>
</tr>
<tr>
<td>Bulgarian</td>
<td>bg</td>
</tr>
<tr>
<td>Burmese</td>
<td>my</td>
</tr>
<tr>
<td>Byelorussian (Belarusian)</td>
<td>be</td>
</tr>
<tr>
<td>Cambodian</td>
<td>km</td>
</tr>
<tr>
<td>Catalan</td>
<td>ca</td>
</tr>
<tr>
<td>Cherokee</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Chewa</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Chinese (Simplified)</td>
<td>zh</td>
</tr>
<tr>
<td>Chinese (Traditional)</td>
<td>zh</td>
</tr>
<tr>
<td>Corsican</td>
<td>co</td>
</tr>
<tr>
<td>Croatian</td>
<td>hr</td>
</tr>
<tr>
<td>Czech</td>
<td>cs</td>
</tr>
<tr>
<td>Danish</td>
<td>da</td>
</tr>
<tr>
<td>Divehi</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Dutch</td>
<td>nl</td>
</tr>
<tr>
<td>Edo</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>English</td>
<td>en</td>
</tr>
<tr>
<td>Esperanto</td>
<td>eo</td>
</tr>
<tr>
<td>Estonian</td>
<td>et</td>
</tr>
<tr>
<td>Faeroese</td>
<td>fo</td>
</tr>
<tr>
<td>Farsi</td>
<td>fa</td>
</tr>
<tr>
<td>Fiji</td>
<td>fj</td>
</tr>
<tr>
<td>Finnish</td>
<td>fi</td>
</tr>
<tr>
<td>Flemish</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>French</td>
<td>fr</td>
</tr>
<tr>
<td>Frisian</td>
<td>fy</td>
</tr>
<tr>
<td>Fulfulde</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Galician</td>
<td>gl</td>
</tr>
<tr>
<td>Gaelic (Scottish)</td>
<td>gd</td>
</tr>
<tr>
<td>Gaelic (Manx)</td>
<td>gv</td>
</tr>
<tr>
<td>Georgian</td>
<td>ka</td>
</tr>
<tr>
<td>German</td>
<td>de</td>
</tr>
<tr>
<td>Greek</td>
<td>el</td>
</tr>
<tr>
<td>Greenlandic</td>
<td>kl</td>
</tr>
<tr>
<td>Guarani</td>
<td>gn</td>
</tr>
<tr>
<td>Gujarati</td>
<td>gu</td>
</tr>
<tr>
<td>Hausa</td>
<td>ha</td>
</tr>
<tr>
<td>Hawaiian</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Hebrew</td>
<td>he, iw</td>
</tr>
<tr>
<td>Hindi</td>
<td>hi</td>
</tr>
<tr>
<td>Hungarian</td>
<td>hu</td>
</tr>
<tr>
<td>Ibibio</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Icelandic</td>
<td>is</td>
</tr>
<tr>
<td>Igbo</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Indonesian</td>
<td>id, in</td>
</tr>
<tr>
<td>Interlingua</td>
<td>ia</td>
</tr>
<tr>
<td>Interlingue</td>
<td>ie</td>
</tr>
<tr>
<td>Inuktitut</td>
<td>iu</td>
</tr>
<tr>
<td>Inupiak</td>
<td>ik</td>
</tr>
<tr>
<td>Irish</td>
<td>ga</td>
</tr>
<tr>
<td>Italian</td>
<td>it</td>
</tr>
<tr>
<td>Japanese</td>
<td>ja</td>
</tr>
<tr>
<td>Javanese</td>
<td>jv</td>
</tr>
<tr>
<td>Kannada</td>
<td>kn</td>
</tr>
<tr>
<td>Kanuri</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Kashmiri</td>
<td>ks</td>
</tr>
<tr>
<td>Kazakh</td>
<td>kk</td>
</tr>
<tr>
<td>Kinyarwanda (Ruanda)</td>
<td>rw</td>
</tr>
<tr>
<td>Kirghiz</td>
<td>ky</td>
</tr>
<tr>
<td>Kirundi (Rundi)</td>
<td>rn</td>
</tr>
<tr>
<td>Konkani</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Korean</td>
<td>ko</td>
</tr>
<tr>
<td>Kurdish</td>
<td>ku</td>
</tr>
<tr>
<td>Laothian</td>
<td>lo</td>
</tr>
<tr>
<td>Latin</td>
<td>la</td>
</tr>
<tr>
<td>Latvian (Lettish)</td>
<td>lv</td>
</tr>
<tr>
<td>Limburgish ( Limburger)</td>
<td>li</td>
</tr>
<tr>
<td>Lingala</td>
<td>ln</td>
</tr>
<tr>
<td>Lithuanian</td>
<td>lt</td>
</tr>
<tr>
<td>Macedonian</td>
<td>mk</td>
</tr>
<tr>
<td>Malagasy</td>
<td>mg</td>
</tr>
<tr>
<td>Malay</td>
<td>ms</td>
</tr>
<tr>
<td>Malayalam</td>
<td>ml</td>
</tr>
<tr>
<td>Maltese</td>
<td>mt</td>
</tr>
<tr>
<td>Maori</td>
<td>mi</td>
</tr>
<tr>
<td>Marathi</td>
<td>mr</td>
</tr>
<tr>
<td>Moldavian</td>
<td>mo</td>
</tr>
<tr>
<td>Mongolian</td>
<td>mn</td>
</tr>
<tr>
<td>Nauru</td>
<td>na</td>
</tr>
<tr>
<td>Nepali</td>
<td>ne</td>
</tr>
<tr>
<td>Norwegian</td>
<td>no</td>
</tr>
<tr>
<td>Occitan</td>
<td>oc</td>
</tr>
<tr>
<td>Oriya</td>
<td>or</td>
</tr>
<tr>
<td>Oromo (Afan, Galla)</td>
<td>om</td>
</tr>
<tr>
<td>Papiamentu</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Pashto (Pushto)</td>
<td>ps</td>
</tr>
<tr>
<td>Polish</td>
<td>pl</td>
</tr>
<tr>
<td>Portuguese</td>
<td>pt</td>
</tr>
<tr>
<td>Punjabi</td>
<td>pa</td>
</tr>
<tr>
<td>Quechua</td>
<td>qu</td>
</tr>
<tr>
<td>Rhaeto-Romance</td>
<td>rm</td>
</tr>
<tr>
<td>Romanian</td>
<td>ro</td>
</tr>
<tr>
<td>Russian</td>
<td>ru</td>
</tr>
<tr>
<td>Sami (Lappish)</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Samoan</td>
<td>sm</td>
</tr>
<tr>
<td>Sangro</td>
<td>sg</td>
</tr>
<tr>
<td>Sanskrit</td>
<td>sa</td>
</tr>
<tr>
<td>Serbian</td>
<td>sr</td>
</tr>
<tr>
<td>Serbo-Croatian</td>
<td>sh</td>
</tr>
<tr>
<td>Sesotho</td>
<td>st</td>
</tr>
<tr>
<td>Setswana</td>
<td>tn</td>
</tr>
<tr>
<td>Shona</td>
<td>sn</td>
</tr>
<tr>
<td>Sindhi</td>
<td>sd</td>
</tr>
<tr>
<td>Sinhalese</td>
<td>si</td>
</tr>
<tr>
<td>Siswati</td>
<td>ss</td>
</tr>
<tr>
<td>Slovak</td>
<td>sk</td>
</tr>
<tr>
<td>Slovenian</td>
<td>sl</td>
</tr>
<tr>
<td>Somali</td>
<td>so</td>
</tr>
<tr>
<td>Spanish</td>
<td>es</td>
</tr>
<tr>
<td>Sundanese</td>
<td>su</td>
</tr>
<tr>
<td>Swahili (Kiswahili)</td>
<td>sw</td>
</tr>
<tr>
<td>Swedish</td>
<td>sv</td>
</tr>
<tr>
<td>Syriac</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Tagalog</td>
<td>tl</td>
</tr>
<tr>
<td>Tajik</td>
<td>tg</td>
</tr>
<tr>
<td>Tamazight</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Tamil</td>
<td>ta</td>
</tr>
<tr>
<td>Tatar</td>
<td>tt</td>
</tr>
<tr>
<td>Telugu</td>
<td>te</td>
</tr>
<tr>
<td>Thai</td>
<td>th</td>
</tr>
<tr>
<td>Tibetan</td>
<td>bo</td>
</tr>
<tr>
<td>Tigrinya</td>
<td>ti</td>
</tr>
<tr>
<td>Tonga</td>
<td>to</td>
</tr>
<tr>
<td>Tsonga</td>
<td>ts</td>
</tr>
<tr>
<td>Turkish</td>
<td>tr</td>
</tr>
<tr>
<td>Turkmen</td>
<td>tk</td>
</tr>
<tr>
<td>Twi</td>
<td>tw</td>
</tr>
<tr>
<td>Uighur</td>
<td>ug</td>
</tr>
<tr>
<td>Ukrainian</td>
<td>uk</td>
</tr>
<tr>
<td>Urdu</td>
<td>ur</td>
</tr>
<tr>
<td>Uzbek</td>
<td>uz</td>
</tr>
<tr>
<td>Venda</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Vietnamese</td>
<td>vi</td>
</tr>
<tr>
<td>Volapük</td>
<td>vo</td>
</tr>
<tr>
<td>Welsh</td>
<td>cy</td>
</tr>
<tr>
<td>Wolof</td>
<td>wo</td>
</tr>
<tr>
<td>Xhosa</td>
<td>xh</td>
</tr>
<tr>
<td>Yi</td>
<td>&nbsp;</td>
</tr>
<tr>
<td>Yiddish</td>
<td>yi, ji</td>
</tr>
<tr>
<td>Yoruba</td>
<td>yo</td>
</tr>
<tr>
<td>Zulu</td>
<td>zu</td>
</tr>
</table>
</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/iso-language-codes.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Codes &#8211; Characters and symbols</title>
		<link>http://phpforms.net/tutorial/html-basics/html-codes-characters-and-symbols-2.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/html-codes-characters-and-symbols-2.html#comments</comments>
		<pubDate>Mon, 29 Mar 2010 12:30:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?p=2543</guid>
		<description><![CDATA[
[hana-code-insert name='HTML' /]

]]></description>
			<content:encoded><![CDATA[<dd>
[hana-code-insert name='HTML' /]
</dd>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/html-codes-characters-and-symbols-2.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASCII Codes</title>
		<link>http://phpforms.net/tutorial/html-basics/ascii-codes.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/ascii-codes.html#comments</comments>
		<pubDate>Mon, 29 Mar 2010 04:49:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?p=2504</guid>
		<description><![CDATA[
The ASCII device control characters were originally designed to control  hardware devices.
  Control characters have nothing to do inside an HTML document.



      ASCII Character
HTML Entity Code
Description


NUL
&#38;#00;
null character


SOH
&#38;#01;
start of header


STX
&#38;#02;
start of text


ETX
&#38;#03;
end of text


EOT
&#38;#04;
end of transmission


ENQ
&#38;#05;
enquiry


ACK
&#38;#06;
acknowledge


BEL
&#38;#07;
bell (ring)


BS
&#38;#08;
backspace


HT
&#38;#09;
horizontal tab


LF
&#38;#10;
line feed


VT
&#38;#11;
vertical tab


FF
&#38;#12;
form feed


CR
&#38;#13;
carriage return


SO
&#38;#14;
shift out


SI
&#38;#15;
shift in


DLE
&#38;#16;
data link escape


DC1
&#38;#17;
device control 1


DC2
&#38;#18;
device control [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>The ASCII device control characters were originally designed to control  hardware devices.<br />
  Control characters have nothing to do inside an HTML document.</dd>
<dd><TABLE ALIGN="CENTER" font-size="1.1em" WIDTH="100%"cellpadding="0" cellspacing="0" border="0" class="features"></p>
<tr>
<td>
      <strong>ASCII Character</strong></td>
<td><strong>HTML Entity Code</strong></td>
<td><strong>Description</strong></td>
</tr>
<tr>
<td>NUL</td>
<td>&amp;#00;</td>
<td>null character</td>
</tr>
<tr>
<td>SOH</td>
<td>&amp;#01;</td>
<td>start of header</td>
</tr>
<tr>
<td>STX</td>
<td>&amp;#02;</td>
<td>start of text</td>
</tr>
<tr>
<td>ETX</td>
<td>&amp;#03;</td>
<td>end of text</td>
</tr>
<tr>
<td>EOT</td>
<td>&amp;#04;</td>
<td>end of transmission</td>
</tr>
<tr>
<td>ENQ</td>
<td>&amp;#05;</td>
<td>enquiry</td>
</tr>
<tr>
<td>ACK</td>
<td>&amp;#06;</td>
<td>acknowledge</td>
</tr>
<tr>
<td>BEL</td>
<td>&amp;#07;</td>
<td>bell (ring)</td>
</tr>
<tr>
<td>BS</td>
<td>&amp;#08;</td>
<td>backspace</td>
</tr>
<tr>
<td>HT</td>
<td>&amp;#09;</td>
<td>horizontal tab</td>
</tr>
<tr>
<td>LF</td>
<td>&amp;#10;</td>
<td>line feed</td>
</tr>
<tr>
<td>VT</td>
<td>&amp;#11;</td>
<td>vertical tab</td>
</tr>
<tr>
<td>FF</td>
<td>&amp;#12;</td>
<td>form feed</td>
</tr>
<tr>
<td>CR</td>
<td>&amp;#13;</td>
<td>carriage return</td>
</tr>
<tr>
<td>SO</td>
<td>&amp;#14;</td>
<td>shift out</td>
</tr>
<tr>
<td>SI</td>
<td>&amp;#15;</td>
<td>shift in</td>
</tr>
<tr>
<td>DLE</td>
<td>&amp;#16;</td>
<td>data link escape</td>
</tr>
<tr>
<td>DC1</td>
<td>&amp;#17;</td>
<td>device control 1</td>
</tr>
<tr>
<td>DC2</td>
<td>&amp;#18;</td>
<td>device control 2</td>
</tr>
<tr>
<td>DC3</td>
<td>&amp;#19;</td>
<td>device control 3</td>
</tr>
<tr>
<td>DC4</td>
<td>&amp;#20;</td>
<td>device control 4</td>
</tr>
<tr>
<td>NAK</td>
<td>&amp;#21;</td>
<td>negative acknowledge</td>
</tr>
<tr>
<td>SYN</td>
<td>&amp;#22;</td>
<td>synchronize</td>
</tr>
<tr>
<td>ETB</td>
<td>&amp;#23;</td>
<td>end transmission block</td>
</tr>
<tr>
<td>CAN</td>
<td>&amp;#24;</td>
<td>cancel</td>
</tr>
<tr>
<td>EM</td>
<td>&amp;#25;</td>
<td>end of medium</td>
</tr>
<tr>
<td>SUB</td>
<td>&amp;#26;</td>
<td>substitute</td>
</tr>
<tr>
<td>ESC</td>
<td>&amp;#27;</td>
<td>escape</td>
</tr>
<tr>
<td>FS</td>
<td>&amp;#28;</td>
<td>file separator</td>
</tr>
<tr>
<td>GS</td>
<td>&amp;#29;</td>
<td>group separator</td>
</tr>
<tr>
<td>RS</td>
<td>&amp;#30;</td>
<td>record separator</td>
</tr>
<tr>
<td>US</td>
<td>&amp;#31;</td>
<td>unit separator</td>
</tr>
<tr>
<td>DEL</td>
<td>&amp;#127;</td>
<td>delete (rubout)</td>
</tr>
</table>
</dd>
<p><br/></p>
<dd>
[hana-code-insert name='ascii' /]
</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/ascii-codes.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Color codes in HTML</title>
		<link>http://phpforms.net/tutorial/html-basics/color-codes-in-html.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/color-codes-in-html.html#comments</comments>
		<pubDate>Fri, 19 Feb 2010 12:09:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Color codes in HTML]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?p=1462</guid>
		<description><![CDATA[
Colors in HTML are identified as - #000000 - it is black, #ffffff - it is white. The following table shows different colors for the HTML markup without "#" character that is not obligatory (you can defy it), but its not advised in terms of HTML specification, therefore we advice you to place "#" in [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd><strong>Colors in HTML</strong> are identified as - #000000 - it is black, #ffffff - it is white. The following table shows different colors for the HTML markup without "#" character that is not obligatory (you can defy it), but its not advised in terms of HTML specification, therefore we advice you to place "#" in color code combinations.<br/><br />
The following script shows the way of color selection online:
</dd>
<dd>
<!--&lt;strong style="color: red;"&gt;Colors&lt;/strong&gt; <br/><br />
&lt;strong style="color: #ff0000;"&gt;Colors&lt;/strong&gt; */-->
</dd>
<dd>
<div id="colorpickerHolder"></div>
<form onsubmit="clickColor(0,-1,-1); return false" id="colorform" name="colorform">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td valign="top" width="250">
<p>Select color:</p>
<div id="selectedColor" style="visibility: hidden; position: relative; width: 21px; height: 21px; background-image: url(selectedcolor.gif); top: 65px; left: 99px;"></div>
<p><img style="margin-right: 2px;" src="../../img/colormap.gif" usemap="#colormap" alt="colormap" border="0"><br />
<map id="colormap" name="colormap" onmouseout="mouseOutMap()">
<area style="cursor: pointer;" shape="poly" coords="63,0,72,4,72,15,63,19,54,15,54,4" onclick='clickColor("#003366",20,54)' onmouseover='mouseOverColor("#003366")' alt="#003366">
<area style="cursor: pointer;" shape="poly" coords="81,0,90,4,90,15,81,19,72,15,72,4" onclick='clickColor("#336699",20,72)' onmouseover='mouseOverColor("#336699")' alt="#336699">
<area style="cursor: pointer;" shape="poly" coords="99,0,108,4,108,15,99,19,90,15,90,4" onclick='clickColor("#3366CC",20,90)' onmouseover='mouseOverColor("#3366CC")' alt="#3366CC">
<area style="cursor: pointer;" shape="poly" coords="117,0,126,4,126,15,117,19,108,15,108,4" onclick='clickColor("#003399",20,108)' onmouseover='mouseOverColor("#003399")' alt="#003399">
<area style="cursor: pointer;" shape="poly" coords="135,0,144,4,144,15,135,19,126,15,126,4" onclick='clickColor("#000099",20,126)' onmouseover='mouseOverColor("#000099")' alt="#000099">
<area style="cursor: pointer;" shape="poly" coords="153,0,162,4,162,15,153,19,144,15,144,4" onclick='clickColor("#0000CC",20,144)' onmouseover='mouseOverColor("#0000CC")' alt="#0000CC">
<area style="cursor: pointer;" shape="poly" coords="171,0,180,4,180,15,171,19,162,15,162,4" onclick='clickColor("#000066",20,162)' onmouseover='mouseOverColor("#000066")' alt="#000066">
<area style="cursor: pointer;" shape="poly" coords="54,15,63,19,63,30,54,34,45,30,45,19" onclick='clickColor("#006666",35,45)' onmouseover='mouseOverColor("#006666")' alt="#006666">
<area style="cursor: pointer;" shape="poly" coords="72,15,81,19,81,30,72,34,63,30,63,19" onclick='clickColor("#006699",35,63)' onmouseover='mouseOverColor("#006699")' alt="#006699">
<area style="cursor: pointer;" shape="poly" coords="90,15,99,19,99,30,90,34,81,30,81,19" onclick='clickColor("#0099CC",35,81)' onmouseover='mouseOverColor("#0099CC")' alt="#0099CC">
<area style="cursor: pointer;" shape="poly" coords="108,15,117,19,117,30,108,34,99,30,99,19" onclick='clickColor("#0066CC",35,99)' onmouseover='mouseOverColor("#0066CC")' alt="#0066CC">
<area style="cursor: pointer;" shape="poly" coords="126,15,135,19,135,30,126,34,117,30,117,19" onclick='clickColor("#0033CC",35,117)' onmouseover='mouseOverColor("#0033CC")' alt="#0033CC">
<area style="cursor: pointer;" shape="poly" coords="144,15,153,19,153,30,144,34,135,30,135,19" onclick='clickColor("#0000FF",35,135)' onmouseover='mouseOverColor("#0000FF")' alt="#0000FF">
<area style="cursor: pointer;" shape="poly" coords="162,15,171,19,171,30,162,34,153,30,153,19" onclick='clickColor("#3333FF",35,153)' onmouseover='mouseOverColor("#3333FF")' alt="#3333FF">
<area style="cursor: pointer;" shape="poly" coords="180,15,189,19,189,30,180,34,171,30,171,19" onclick='clickColor("#333399",35,171)' onmouseover='mouseOverColor("#333399")' alt="#333399">
<area style="cursor: pointer;" shape="poly" coords="45,30,54,34,54,45,45,49,36,45,36,34" onclick='clickColor("#669999",50,36)' onmouseover='mouseOverColor("#669999")' alt="#669999">
<area style="cursor: pointer;" shape="poly" coords="63,30,72,34,72,45,63,49,54,45,54,34" onclick='clickColor("#009999",50,54)' onmouseover='mouseOverColor("#009999")' alt="#009999">
<area style="cursor: pointer;" shape="poly" coords="81,30,90,34,90,45,81,49,72,45,72,34" onclick='clickColor("#33CCCC",50,72)' onmouseover='mouseOverColor("#33CCCC")' alt="#33CCCC">
<area style="cursor: pointer;" shape="poly" coords="99,30,108,34,108,45,99,49,90,45,90,34" onclick='clickColor("#00CCFF",50,90)' onmouseover='mouseOverColor("#00CCFF")' alt="#00CCFF">
<area style="cursor: pointer;" shape="poly" coords="117,30,126,34,126,45,117,49,108,45,108,34" onclick='clickColor("#0099FF",50,108)' onmouseover='mouseOverColor("#0099FF")' alt="#0099FF">
<area style="cursor: pointer;" shape="poly" coords="135,30,144,34,144,45,135,49,126,45,126,34" onclick='clickColor("#0066FF",50,126)' onmouseover='mouseOverColor("#0066FF")' alt="#0066FF">
<area style="cursor: pointer;" shape="poly" coords="153,30,162,34,162,45,153,49,144,45,144,34" onclick='clickColor("#3366FF",50,144)' onmouseover='mouseOverColor("#3366FF")' alt="#3366FF">
<area style="cursor: pointer;" shape="poly" coords="171,30,180,34,180,45,171,49,162,45,162,34" onclick='clickColor("#3333CC",50,162)' onmouseover='mouseOverColor("#3333CC")' alt="#3333CC">
<area style="cursor: pointer;" shape="poly" coords="189,30,198,34,198,45,189,49,180,45,180,34" onclick='clickColor("#666699",50,180)' onmouseover='mouseOverColor("#666699")' alt="#666699">
<area style="cursor: pointer;" shape="poly" coords="36,45,45,49,45,60,36,64,27,60,27,49" onclick='clickColor("#339966",65,27)' onmouseover='mouseOverColor("#339966")' alt="#339966">
<area style="cursor: pointer;" shape="poly" coords="54,45,63,49,63,60,54,64,45,60,45,49" onclick='clickColor("#00CC99",65,45)' onmouseover='mouseOverColor("#00CC99")' alt="#00CC99">
<area style="cursor: pointer;" shape="poly" coords="72,45,81,49,81,60,72,64,63,60,63,49" onclick='clickColor("#00FFCC",65,63)' onmouseover='mouseOverColor("#00FFCC")' alt="#00FFCC">
<area style="cursor: pointer;" shape="poly" coords="90,45,99,49,99,60,90,64,81,60,81,49" onclick='clickColor("#00FFFF",65,81)' onmouseover='mouseOverColor("#00FFFF")' alt="#00FFFF">
<area style="cursor: pointer;" shape="poly" coords="108,45,117,49,117,60,108,64,99,60,99,49" onclick='clickColor("#33CCFF",65,99)' onmouseover='mouseOverColor("#33CCFF")' alt="#33CCFF">
<area style="cursor: pointer;" shape="poly" coords="126,45,135,49,135,60,126,64,117,60,117,49" onclick='clickColor("#3399FF",65,117)' onmouseover='mouseOverColor("#3399FF")' alt="#3399FF">
<area style="cursor: pointer;" shape="poly" coords="144,45,153,49,153,60,144,64,135,60,135,49" onclick='clickColor("#6699FF",65,135)' onmouseover='mouseOverColor("#6699FF")' alt="#6699FF">
<area style="cursor: pointer;" shape="poly" coords="162,45,171,49,171,60,162,64,153,60,153,49" onclick='clickColor("#6666FF",65,153)' onmouseover='mouseOverColor("#6666FF")' alt="#6666FF">
<area style="cursor: pointer;" shape="poly" coords="180,45,189,49,189,60,180,64,171,60,171,49" onclick='clickColor("#6600FF",65,171)' onmouseover='mouseOverColor("#6600FF")' alt="#6600FF">
<area style="cursor: pointer;" shape="poly" coords="198,45,207,49,207,60,198,64,189,60,189,49" onclick='clickColor("#6600CC",65,189)' onmouseover='mouseOverColor("#6600CC")' alt="#6600CC">
<area style="cursor: pointer;" shape="poly" coords="27,60,36,64,36,75,27,79,18,75,18,64" onclick='clickColor("#339933",80,18)' onmouseover='mouseOverColor("#339933")' alt="#339933">
<area style="cursor: pointer;" shape="poly" coords="45,60,54,64,54,75,45,79,36,75,36,64" onclick='clickColor("#00CC66",80,36)' onmouseover='mouseOverColor("#00CC66")' alt="#00CC66">
<area style="cursor: pointer;" shape="poly" coords="63,60,72,64,72,75,63,79,54,75,54,64" onclick='clickColor("#00FF99",80,54)' onmouseover='mouseOverColor("#00FF99")' alt="#00FF99">
<area style="cursor: pointer;" shape="poly" coords="81,60,90,64,90,75,81,79,72,75,72,64" onclick='clickColor("#66FFCC",80,72)' onmouseover='mouseOverColor("#66FFCC")' alt="#66FFCC">
<area style="cursor: pointer;" shape="poly" coords="99,60,108,64,108,75,99,79,90,75,90,64" onclick='clickColor("#66FFFF",80,90)' onmouseover='mouseOverColor("#66FFFF")' alt="#66FFFF">
<area style="cursor: pointer;" shape="poly" coords="117,60,126,64,126,75,117,79,108,75,108,64" onclick='clickColor("#66CCFF",80,108)' onmouseover='mouseOverColor("#66CCFF")' alt="#66CCFF">
<area style="cursor: pointer;" shape="poly" coords="135,60,144,64,144,75,135,79,126,75,126,64" onclick='clickColor("#99CCFF",80,126)' onmouseover='mouseOverColor("#99CCFF")' alt="#99CCFF">
<area style="cursor: pointer;" shape="poly" coords="153,60,162,64,162,75,153,79,144,75,144,64" onclick='clickColor("#9999FF",80,144)' onmouseover='mouseOverColor("#9999FF")' alt="#9999FF">
<area style="cursor: pointer;" shape="poly" coords="171,60,180,64,180,75,171,79,162,75,162,64" onclick='clickColor("#9966FF",80,162)' onmouseover='mouseOverColor("#9966FF")' alt="#9966FF">
<area style="cursor: pointer;" shape="poly" coords="189,60,198,64,198,75,189,79,180,75,180,64" onclick='clickColor("#9933FF",80,180)' onmouseover='mouseOverColor("#9933FF")' alt="#9933FF">
<area style="cursor: pointer;" shape="poly" coords="207,60,216,64,216,75,207,79,198,75,198,64" onclick='clickColor("#9900FF",80,198)' onmouseover='mouseOverColor("#9900FF")' alt="#9900FF">
<area style="cursor: pointer;" shape="poly" coords="18,75,27,79,27,90,18,94,9,90,9,79" onclick='clickColor("#006600",95,9)' onmouseover='mouseOverColor("#006600")' alt="#006600">
<area style="cursor: pointer;" shape="poly" coords="36,75,45,79,45,90,36,94,27,90,27,79" onclick='clickColor("#00CC00",95,27)' onmouseover='mouseOverColor("#00CC00")' alt="#00CC00">
<area style="cursor: pointer;" shape="poly" coords="54,75,63,79,63,90,54,94,45,90,45,79" onclick='clickColor("#00FF00",95,45)' onmouseover='mouseOverColor("#00FF00")' alt="#00FF00">
<area style="cursor: pointer;" shape="poly" coords="72,75,81,79,81,90,72,94,63,90,63,79" onclick='clickColor("#66FF99",95,63)' onmouseover='mouseOverColor("#66FF99")' alt="#66FF99">
<area style="cursor: pointer;" shape="poly" coords="90,75,99,79,99,90,90,94,81,90,81,79" onclick='clickColor("#99FFCC",95,81)' onmouseover='mouseOverColor("#99FFCC")' alt="#99FFCC">
<area style="cursor: pointer;" shape="poly" coords="108,75,117,79,117,90,108,94,99,90,99,79" onclick='clickColor("#CCFFFF",95,99)' onmouseover='mouseOverColor("#CCFFFF")' alt="#CCFFFF">
<area style="cursor: pointer;" shape="poly" coords="126,75,135,79,135,90,126,94,117,90,117,79" onclick='clickColor("#CCCCFF",95,117)' onmouseover='mouseOverColor("#CCCCFF")' alt="#CCCCFF">
<area style="cursor: pointer;" shape="poly" coords="144,75,153,79,153,90,144,94,135,90,135,79" onclick='clickColor("#CC99FF",95,135)' onmouseover='mouseOverColor("#CC99FF")' alt="#CC99FF">
<area style="cursor: pointer;" shape="poly" coords="162,75,171,79,171,90,162,94,153,90,153,79" onclick='clickColor("#CC66FF",95,153)' onmouseover='mouseOverColor("#CC66FF")' alt="#CC66FF">
<area style="cursor: pointer;" shape="poly" coords="180,75,189,79,189,90,180,94,171,90,171,79" onclick='clickColor("#CC33FF",95,171)' onmouseover='mouseOverColor("#CC33FF")' alt="#CC33FF">
<area style="cursor: pointer;" shape="poly" coords="198,75,207,79,207,90,198,94,189,90,189,79" onclick='clickColor("#CC00FF",95,189)' onmouseover='mouseOverColor("#CC00FF")' alt="#CC00FF">
<area style="cursor: pointer;" shape="poly" coords="216,75,225,79,225,90,216,94,207,90,207,79" onclick='clickColor("#9900CC",95,207)' onmouseover='mouseOverColor("#9900CC")' alt="#9900CC">
<area style="cursor: pointer;" shape="poly" coords="9,90,18,94,18,105,9,109,0,105,0,94" onclick='clickColor("#003300",110,0)' onmouseover='mouseOverColor("#003300")' alt="#003300">
<area style="cursor: pointer;" shape="poly" coords="27,90,36,94,36,105,27,109,18,105,18,94" onclick='clickColor("#009933",110,18)' onmouseover='mouseOverColor("#009933")' alt="#009933">
<area style="cursor: pointer;" shape="poly" coords="45,90,54,94,54,105,45,109,36,105,36,94" onclick='clickColor("#33CC33",110,36)' onmouseover='mouseOverColor("#33CC33")' alt="#33CC33">
<area style="cursor: pointer;" shape="poly" coords="63,90,72,94,72,105,63,109,54,105,54,94" onclick='clickColor("#66FF66",110,54)' onmouseover='mouseOverColor("#66FF66")' alt="#66FF66">
<area style="cursor: pointer;" shape="poly" coords="81,90,90,94,90,105,81,109,72,105,72,94" onclick='clickColor("#99FF99",110,72)' onmouseover='mouseOverColor("#99FF99")' alt="#99FF99">
<area style="cursor: pointer;" shape="poly" coords="99,90,108,94,108,105,99,109,90,105,90,94" onclick='clickColor("#CCFFCC",110,90)' onmouseover='mouseOverColor("#CCFFCC")' alt="#CCFFCC">
<area style="cursor: pointer;" shape="poly" coords="117,90,126,94,126,105,117,109,108,105,108,94" onclick='clickColor("#FFFFFF",110,108)' onmouseover='mouseOverColor("#FFFFFF")' alt="#FFFFFF">
<area style="cursor: pointer;" shape="poly" coords="135,90,144,94,144,105,135,109,126,105,126,94" onclick='clickColor("#FFCCFF",110,126)' onmouseover='mouseOverColor("#FFCCFF")' alt="#FFCCFF">
<area style="cursor: pointer;" shape="poly" coords="153,90,162,94,162,105,153,109,144,105,144,94" onclick='clickColor("#FF99FF",110,144)' onmouseover='mouseOverColor("#FF99FF")' alt="#FF99FF">
<area style="cursor: pointer;" shape="poly" coords="171,90,180,94,180,105,171,109,162,105,162,94" onclick='clickColor("#FF66FF",110,162)' onmouseover='mouseOverColor("#FF66FF")' alt="#FF66FF">
<area style="cursor: pointer;" shape="poly" coords="189,90,198,94,198,105,189,109,180,105,180,94" onclick='clickColor("#FF00FF",110,180)' onmouseover='mouseOverColor("#FF00FF")' alt="#FF00FF">
<area style="cursor: pointer;" shape="poly" coords="207,90,216,94,216,105,207,109,198,105,198,94" onclick='clickColor("#CC00CC",110,198)' onmouseover='mouseOverColor("#CC00CC")' alt="#CC00CC">
<area style="cursor: pointer;" shape="poly" coords="225,90,234,94,234,105,225,109,216,105,216,94" onclick='clickColor("#660066",110,216)' onmouseover='mouseOverColor("#660066")' alt="#660066">
<area style="cursor: pointer;" shape="poly" coords="18,105,27,109,27,120,18,124,9,120,9,109" onclick='clickColor("#336600",125,9)' onmouseover='mouseOverColor("#336600")' alt="#336600">
<area style="cursor: pointer;" shape="poly" coords="36,105,45,109,45,120,36,124,27,120,27,109" onclick='clickColor("#009900",125,27)' onmouseover='mouseOverColor("#009900")' alt="#009900">
<area style="cursor: pointer;" shape="poly" coords="54,105,63,109,63,120,54,124,45,120,45,109" onclick='clickColor("#66FF33",125,45)' onmouseover='mouseOverColor("#66FF33")' alt="#66FF33">
<area style="cursor: pointer;" shape="poly" coords="72,105,81,109,81,120,72,124,63,120,63,109" onclick='clickColor("#99FF66",125,63)' onmouseover='mouseOverColor("#99FF66")' alt="#99FF66">
<area style="cursor: pointer;" shape="poly" coords="90,105,99,109,99,120,90,124,81,120,81,109" onclick='clickColor("#CCFF99",125,81)' onmouseover='mouseOverColor("#CCFF99")' alt="#CCFF99">
<area style="cursor: pointer;" shape="poly" coords="108,105,117,109,117,120,108,124,99,120,99,109" onclick='clickColor("#FFFFCC",125,99)' onmouseover='mouseOverColor("#FFFFCC")' alt="#FFFFCC">
<area style="cursor: pointer;" shape="poly" coords="126,105,135,109,135,120,126,124,117,120,117,109" onclick='clickColor("#FFCCCC",125,117)' onmouseover='mouseOverColor("#FFCCCC")' alt="#FFCCCC">
<area style="cursor: pointer;" shape="poly" coords="144,105,153,109,153,120,144,124,135,120,135,109" onclick='clickColor("#FF99CC",125,135)' onmouseover='mouseOverColor("#FF99CC")' alt="#FF99CC">
<area style="cursor: pointer;" shape="poly" coords="162,105,171,109,171,120,162,124,153,120,153,109" onclick='clickColor("#FF66CC",125,153)' onmouseover='mouseOverColor("#FF66CC")' alt="#FF66CC">
<area style="cursor: pointer;" shape="poly" coords="180,105,189,109,189,120,180,124,171,120,171,109" onclick='clickColor("#FF33CC",125,171)' onmouseover='mouseOverColor("#FF33CC")' alt="#FF33CC">
<area style="cursor: pointer;" shape="poly" coords="198,105,207,109,207,120,198,124,189,120,189,109" onclick='clickColor("#CC0099",125,189)' onmouseover='mouseOverColor("#CC0099")' alt="#CC0099">
<area style="cursor: pointer;" shape="poly" coords="216,105,225,109,225,120,216,124,207,120,207,109" onclick='clickColor("#993399",125,207)' onmouseover='mouseOverColor("#993399")' alt="#993399">
<area style="cursor: pointer;" shape="poly" coords="27,120,36,124,36,135,27,139,18,135,18,124" onclick='clickColor("#333300",140,18)' onmouseover='mouseOverColor("#333300")' alt="#333300">
<area style="cursor: pointer;" shape="poly" coords="45,120,54,124,54,135,45,139,36,135,36,124" onclick='clickColor("#669900",140,36)' onmouseover='mouseOverColor("#669900")' alt="#669900">
<area style="cursor: pointer;" shape="poly" coords="63,120,72,124,72,135,63,139,54,135,54,124" onclick='clickColor("#99FF33",140,54)' onmouseover='mouseOverColor("#99FF33")' alt="#99FF33">
<area style="cursor: pointer;" shape="poly" coords="81,120,90,124,90,135,81,139,72,135,72,124" onclick='clickColor("#CCFF66",140,72)' onmouseover='mouseOverColor("#CCFF66")' alt="#CCFF66">
<area style="cursor: pointer;" shape="poly" coords="99,120,108,124,108,135,99,139,90,135,90,124" onclick='clickColor("#FFFF99",140,90)' onmouseover='mouseOverColor("#FFFF99")' alt="#FFFF99">
<area style="cursor: pointer;" shape="poly" coords="117,120,126,124,126,135,117,139,108,135,108,124" onclick='clickColor("#FFCC99",140,108)' onmouseover='mouseOverColor("#FFCC99")' alt="#FFCC99">
<area style="cursor: pointer;" shape="poly" coords="135,120,144,124,144,135,135,139,126,135,126,124" onclick='clickColor("#FF9999",140,126)' onmouseover='mouseOverColor("#FF9999")' alt="#FF9999">
<area style="cursor: pointer;" shape="poly" coords="153,120,162,124,162,135,153,139,144,135,144,124" onclick='clickColor("#FF6699",140,144)' onmouseover='mouseOverColor("#FF6699")' alt="#FF6699">
<area style="cursor: pointer;" shape="poly" coords="171,120,180,124,180,135,171,139,162,135,162,124" onclick='clickColor("#FF3399",140,162)' onmouseover='mouseOverColor("#FF3399")' alt="#FF3399">
<area style="cursor: pointer;" shape="poly" coords="189,120,198,124,198,135,189,139,180,135,180,124" onclick='clickColor("#CC3399",140,180)' onmouseover='mouseOverColor("#CC3399")' alt="#CC3399">
<area style="cursor: pointer;" shape="poly" coords="207,120,216,124,216,135,207,139,198,135,198,124" onclick='clickColor("#990099",140,198)' onmouseover='mouseOverColor("#990099")' alt="#990099">
<area style="cursor: pointer;" shape="poly" coords="36,135,45,139,45,150,36,154,27,150,27,139" onclick='clickColor("#666633",155,27)' onmouseover='mouseOverColor("#666633")' alt="#666633">
<area style="cursor: pointer;" shape="poly" coords="54,135,63,139,63,150,54,154,45,150,45,139" onclick='clickColor("#99CC00",155,45)' onmouseover='mouseOverColor("#99CC00")' alt="#99CC00">
<area style="cursor: pointer;" shape="poly" coords="72,135,81,139,81,150,72,154,63,150,63,139" onclick='clickColor("#CCFF33",155,63)' onmouseover='mouseOverColor("#CCFF33")' alt="#CCFF33">
<area style="cursor: pointer;" shape="poly" coords="90,135,99,139,99,150,90,154,81,150,81,139" onclick='clickColor("#FFFF66",155,81)' onmouseover='mouseOverColor("#FFFF66")' alt="#FFFF66">
<area style="cursor: pointer;" shape="poly" coords="108,135,117,139,117,150,108,154,99,150,99,139" onclick='clickColor("#FFCC66",155,99)' onmouseover='mouseOverColor("#FFCC66")' alt="#FFCC66">
<area style="cursor: pointer;" shape="poly" coords="126,135,135,139,135,150,126,154,117,150,117,139" onclick='clickColor("#FF9966",155,117)' onmouseover='mouseOverColor("#FF9966")' alt="#FF9966">
<area style="cursor: pointer;" shape="poly" coords="144,135,153,139,153,150,144,154,135,150,135,139" onclick='clickColor("#FF6666",155,135)' onmouseover='mouseOverColor("#FF6666")' alt="#FF6666">
<area style="cursor: pointer;" shape="poly" coords="162,135,171,139,171,150,162,154,153,150,153,139" onclick='clickColor("#FF0066",155,153)' onmouseover='mouseOverColor("#FF0066")' alt="#FF0066">
<area style="cursor: pointer;" shape="poly" coords="180,135,189,139,189,150,180,154,171,150,171,139" onclick='clickColor("#CC6699",155,171)' onmouseover='mouseOverColor("#CC6699")' alt="#CC6699">
<area style="cursor: pointer;" shape="poly" coords="198,135,207,139,207,150,198,154,189,150,189,139" onclick='clickColor("#993366",155,189)' onmouseover='mouseOverColor("#993366")' alt="#993366">
<area style="cursor: pointer;" shape="poly" coords="45,150,54,154,54,165,45,169,36,165,36,154" onclick='clickColor("#999966",170,36)' onmouseover='mouseOverColor("#999966")' alt="#999966">
<area style="cursor: pointer;" shape="poly" coords="63,150,72,154,72,165,63,169,54,165,54,154" onclick='clickColor("#CCCC00",170,54)' onmouseover='mouseOverColor("#CCCC00")' alt="#CCCC00">
<area style="cursor: pointer;" shape="poly" coords="81,150,90,154,90,165,81,169,72,165,72,154" onclick='clickColor("#FFFF00",170,72)' onmouseover='mouseOverColor("#FFFF00")' alt="#FFFF00">
<area style="cursor: pointer;" shape="poly" coords="99,150,108,154,108,165,99,169,90,165,90,154" onclick='clickColor("#FFCC00",170,90)' onmouseover='mouseOverColor("#FFCC00")' alt="#FFCC00">
<area style="cursor: pointer;" shape="poly" coords="117,150,126,154,126,165,117,169,108,165,108,154" onclick='clickColor("#FF9933",170,108)' onmouseover='mouseOverColor("#FF9933")' alt="#FF9933">
<area style="cursor: pointer;" shape="poly" coords="135,150,144,154,144,165,135,169,126,165,126,154" onclick='clickColor("#FF6600",170,126)' onmouseover='mouseOverColor("#FF6600")' alt="#FF6600">
<area style="cursor: pointer;" shape="poly" coords="153,150,162,154,162,165,153,169,144,165,144,154" onclick='clickColor("#FF5050",170,144)' onmouseover='mouseOverColor("#FF5050")' alt="#FF5050">
<area style="cursor: pointer;" shape="poly" coords="171,150,180,154,180,165,171,169,162,165,162,154" onclick='clickColor("#CC0066",170,162)' onmouseover='mouseOverColor("#CC0066")' alt="#CC0066">
<area style="cursor: pointer;" shape="poly" coords="189,150,198,154,198,165,189,169,180,165,180,154" onclick='clickColor("#660033",170,180)' onmouseover='mouseOverColor("#660033")' alt="#660033">
<area style="cursor: pointer;" shape="poly" coords="54,165,63,169,63,180,54,184,45,180,45,169" onclick='clickColor("#996633",185,45)' onmouseover='mouseOverColor("#996633")' alt="#996633">
<area style="cursor: pointer;" shape="poly" coords="72,165,81,169,81,180,72,184,63,180,63,169" onclick='clickColor("#CC9900",185,63)' onmouseover='mouseOverColor("#CC9900")' alt="#CC9900">
<area style="cursor: pointer;" shape="poly" coords="90,165,99,169,99,180,90,184,81,180,81,169" onclick='clickColor("#FF9900",185,81)' onmouseover='mouseOverColor("#FF9900")' alt="#FF9900">
<area style="cursor: pointer;" shape="poly" coords="108,165,117,169,117,180,108,184,99,180,99,169" onclick='clickColor("#CC6600",185,99)' onmouseover='mouseOverColor("#CC6600")' alt="#CC6600">
<area style="cursor: pointer;" shape="poly" coords="126,165,135,169,135,180,126,184,117,180,117,169" onclick='clickColor("#FF3300",185,117)' onmouseover='mouseOverColor("#FF3300")' alt="#FF3300">
<area style="cursor: pointer;" shape="poly" coords="144,165,153,169,153,180,144,184,135,180,135,169" onclick='clickColor("#FF0000",185,135)' onmouseover='mouseOverColor("#FF0000")' alt="#FF0000">
<area style="cursor: pointer;" shape="poly" coords="162,165,171,169,171,180,162,184,153,180,153,169" onclick='clickColor("#CC0000",185,153)' onmouseover='mouseOverColor("#CC0000")' alt="#CC0000">
<area style="cursor: pointer;" shape="poly" coords="180,165,189,169,189,180,180,184,171,180,171,169" onclick='clickColor("#990033",185,171)' onmouseover='mouseOverColor("#990033")' alt="#990033">
<area style="cursor: pointer;" shape="poly" coords="63,180,72,184,72,195,63,199,54,195,54,184" onclick='clickColor("#663300",200,54)' onmouseover='mouseOverColor("#663300")' alt="#663300">
<area style="cursor: pointer;" shape="poly" coords="81,180,90,184,90,195,81,199,72,195,72,184" onclick='clickColor("#996600",200,72)' onmouseover='mouseOverColor("#996600")' alt="#996600">
<area style="cursor: pointer;" shape="poly" coords="99,180,108,184,108,195,99,199,90,195,90,184" onclick='clickColor("#CC3300",200,90)' onmouseover='mouseOverColor("#CC3300")' alt="#CC3300">
<area style="cursor: pointer;" shape="poly" coords="117,180,126,184,126,195,117,199,108,195,108,184" onclick='clickColor("#993300",200,108)' onmouseover='mouseOverColor("#993300")' alt="#993300">
<area style="cursor: pointer;" shape="poly" coords="135,180,144,184,144,195,135,199,126,195,126,184" onclick='clickColor("#990000",200,126)' onmouseover='mouseOverColor("#990000")' alt="#990000">
<area style="cursor: pointer;" shape="poly" coords="153,180,162,184,162,195,153,199,144,195,144,184" onclick='clickColor("#800000",200,144)' onmouseover='mouseOverColor("#800000")' alt="#800000">
<area style="cursor: pointer;" shape="poly" coords="171,180,180,184,180,195,171,199,162,195,162,184" onclick='clickColor("#993333",200,162)' onmouseover='mouseOverColor("#993333")' alt="#993333"></map>
<p>	<script type="text/javascript">
document.getElementById("selectedColor").style.top="185px";
	document.getElementById("selectedColor").style.left="135px";
	document.getElementById("selectedColor").style.visibility="visible";
	</script></p>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td width="67"></td>
<td width="110">
<div id="divpreview" style="border: 1px solid rgb(212, 212, 212); height: 30px; width: 100px; background-color: rgb(92, 214, 255);">&nbsp;</div>
</td>
<td>
<div id="divpreviewtxt">#5CD6FF</div>
</td>
</tr>
</tbody>
</table>
<p>Selected color:<br />
<input style="width: 70px;" name="colorhex" id="colorhex" value="#5CD6FF">
<input value="Submit" type="button" onclick="clickColor(0,-1,-1); return false">
</form>
</td>
<td align="right">
<div id="colorshades">loading ... </div>
</td>
</tr>
</tbody>
</table>
<p><!--<script type="text/javascript"></p>
<p>$('#colorpickerHolder').ColorPicker({flat: true});</p>
<p></script> --></p>
</dd>
<dd><a class="menu_black" href="tables-in-html.html" title="Tables in HTML">Tables in HTML</a></dd>
<dd ><a class="menu_black" href="meta-tag-in-html.html" title="META tag in HTML">META tag in HTML</a></dd>
<dd ><a class="menu_black" href="html-forms.html" title="HTML Forms">HTML Forms</a></dd>
<dd ><a class="menu_black" href="frames-in-html.html" title="Frames in HTML">Frames in HTML</a></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/color-codes-in-html.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mandatory tags</title>
		<link>http://phpforms.net/tutorial/html-basics/mandatory-tags.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/mandatory-tags.html#comments</comments>
		<pubDate>Fri, 12 Feb 2010 07:43:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?p=1395</guid>
		<description><![CDATA[
Each HTML document must contain the following tags &#60;html&#62; &#60;/ html&#62;, &#60;head&#62; &#60;/ head&#62;, &#60;body&#62; &#60;/ body&#62;, &#60;title&#62; &#60;/ title&#62;. The order of tags in the HTML document is presented below:


  The body of your document


Inside the tag &#60;head&#62; &#60;/ head&#62; is the name of your HTML document (more often you see it as [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>Each HTML document must contain the following tags &lt;html&gt; &lt;/ html&gt;, &lt;head&gt; &lt;/ head&gt;, &lt;body&gt; &lt;/ body&gt;, &lt;title&gt; &lt;/ title&gt;. The order of tags in the HTML document is presented below:</dd>
<dd>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">  The body of your document</pre></div></div>

</dd>
<dd>Inside the tag &lt;head&gt; &lt;/ head&gt; is the name of your HTML document (more often you see it as a link in search engine results). In addition to this tag inside the &lt;head&gt; &lt;/ head&gt; structure so-called META tags can be located. You can see their appointment and descriptions in the handbook on META tags.</dd>
<dd>
<h2>The body of HTML document</h2>
<h2>Headers</h2>
</dd>
<dd>In HTML language headers are indicated by tags &lt;h1&gt; &lt;/ h1&gt;, &lt;h2&gt; &lt;/ h2&gt;, ... , &lt;h6&gt; &lt;/h6&gt;. Thus there are 6 levels of headers. You can make an experiment - insert &lt;h1&gt; HTML - it's simple&lt;/ h1&gt; instead of "The body of the document" in previous example, then save this in text format, change the extension from txt to. html and open it in your browser. So how is it? I think it’s pleasant to make a progress. You can try the same to other levels of headers.</dd>
<dd>
<h2>Paragraphs in HTML language</h2>
</dd>
<dd>The paragraph in the HTML document is defined by tag &lt;p&gt; &lt;/ p&gt;. thus the construction &lt;p&gt; - How are you? &lt;/ p&gt; &lt;p&gt; - Not bad. &lt;/ p&gt; should look like the following:</dd>
<dd>- How are you?</p>
<p>- Not bad.</p>
</dd>
<dd>
<h2>Selection of text in HTML</h2>
</dd>
<dd>To select text, or a text field in the HTML tags &lt;b&gt; &lt;/ b&gt;, &lt;i&gt; &lt;/ i&gt;, &lt;u&gt; &lt;/ u&gt; are used, thus the line</dd>
<dd>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">strong</span>&gt;</span>
  bold
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">strong</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">em</span>&gt;</span>
  italic
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">em</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">span</span> <span style="color: #000066;">style</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text-decoration: underline;&quot;</span>&gt;</span>
  underlined
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">span</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">span</span> <span style="color: #000066;">style</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text-decoration: underline;&quot;</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">em</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">strong</span>&gt;</span>
      bold underlined italic
   <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">strong</span>&gt;</span>
  <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">em</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">span</span>&gt;</span></pre></div></div>

</dd>
<dd>will look like the following:<strong> bold </strong> <em> italic </em></p>
<pre style="text-decoration: underline;"> underlined  <em> <strong> bold underlined italic </strong> </em></pre>
</dd>
<dd>
<h2>Unnumbered lists in HTML</h2>
</dd>
<dd>Unnumbered lists can putted into HTML code by the following structure: &lt;ul&gt;&lt;li&gt; item 1&lt;li&gt; item 2&lt;li&gt;item 3&lt;/ ul&gt;, which will give us a list of species:</dd>
<dd>
<ul>
<li> item 1</li>
<li> item 2</li>
<li>item 3</li>
</ul>
</dd>
<dd>
<h2>Enumerated lists in HTML</h2>
</dd>
<dd>Enumerated lists are defined by tags &lt;ol&gt; &lt;li&gt; item 1&lt;li&gt;item 2&lt;li&gt; item 3 &lt;/ ol&gt;. look what we’ll get:</dd>
<dd><!--</p>
<p><mce:style type="text/css"><!  				   .ol li { 					list-style-type: decimal !important;/* Квадратные маркеры */ 				   }            				 --></p>
<ol class="ol">
<li>item 1</li>
<li>item 2</li>
<li>item 3</li>
</ol>
<p>--&gt;</p>
<p>1. item 1<br />
2. item 2<br />
3. item 3</p>
</dd>
<dd>
<h2>Nested lists in HTML</h2>
</dd>
<dd>look at the example of nested list</dd>
<dd>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span>&gt;</span>
&nbsp;
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;</span> Chapter 1
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span>&gt;</span>
&nbsp;
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;</span>Section 1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
&nbsp;
&nbsp;
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;</span>Section 2<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
&nbsp;
&nbsp;
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;</span> Chapter 2
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span>&gt;</span>
&nbsp;
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;</span>Section 1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
&nbsp;
&nbsp;
	<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span>&gt;</span>Section 2<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span></pre></div></div>

</dd>
<dd>This entry in the HTML code gives us the following result:</dd>
<dd>
<ul>
<li> Chapter 1
<ul>
<li>Section 1</li>
<li>Section 2</li>
</ul>
</li>
<li> Chapter 2
<ul>
<li>Section 1</li>
<li> Section 2</li>
</ul>
</li>
</ul>
</dd>
<dd>Special characters in the text of the document</dd>
<dd>Special characters in the text of the document are prescribed as follows</dd>
<dd>&amp;lt; -  left bracket (&lt;)</p>
<p>&amp;gt; - right bracket (&gt;)</p>
<p>&amp;amp; - (&amp;)</p>
<p>&amp;quot; - quotation marks (")</p>
</dd>
<dd>A line &lt; "HTML Language" &gt; will look like:</dd>
<dd>&lt;"HTML language"&gt;</dd>
<dd>
<h2>A Line Break in the text of HTML document</h2>
</dd>
<dd>Line break is implemented by the tag &lt;br&gt; . For example: "The author  of the text-line  &lt;br&gt; Publication date &lt;/br&gt; Circulation", gives the  following result:</p>
<p>The author of the text-line</p>
<p>Publication date</p>
<p>Circulation</p>
</dd>
<dd> </dd>
<dd><a class="menu_black" title="Frames in HTML" href="frames-in-html.html">Frames in HTML</a></dd>
<dd><a class="menu_black" title="Mandatory tags of HTML" href="mandatory-tags.html">Mandatory tags of HTML</a></dd>
<dd><a class="menu_black" title="Directories in HTML" href="directories-in-html.html">Directories in HTML</a></dd>
<dd><a class="menu_black" title="HTML Textarea" href="html-textarea.html">HTML Textarea</a></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/mandatory-tags.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email forms tutorial</title>
		<link>http://phpforms.net/tutorial/html-basics/email-forms-tutorial.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/email-forms-tutorial.html#comments</comments>
		<pubDate>Fri, 12 Feb 2010 07:31:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?p=1390</guid>
		<description><![CDATA[
Email forms
Email form is a type of contact form. It is a small HTML script that uses PHP to send all information entered by visitors to an email account. If you want the visitors to contact you, you can place an email form on your website.
Email forms are built with the help of email form [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dt><a name="email_forms" id="email_forms">Email forms</a></dt>
<dd>Email form is a type of <a href="http://phpforms.net/v2/contact_form.html">contact form</a>. It is a small HTML script that uses PHP to send all information entered by visitors to an email account. If you want the visitors to contact you, you can place an email form on your website.</dd>
<dd><a href="/" title="Email forms">Email forms</a> are built with the help of email form builders (generators, creators) and are processed by a form processor ( a script written in PHP). The processor sends the content of web forms by email. It is a means of collecting, analyzing and managing your website visitors' feedback.</dd>
<dd>Every website should have a section that allows its visitors to contact the owners, webmasters or ask for support. Email form processor enables users to create a dynamic web site form for collecting online submitted information which is stored in a searchable database.</dd>
<dd>A form on the website allows the web site visitors to contact you by simply completing the web form. Some forms may include CAPTCHA test, which is basically a graphic image that contains some letters which your visitors have to type (to verify that they are not an automated spam robot that sends spam through mail forms). You are able to change the appearance of the email form page as well as the fields that appear. The form may be located on your own website or on the free formtomail host's site. The site administrator has to create a "thank you" page for the form and host it on his site. Often it is possible to view statistics on the use of your form.</dd>
<dd>Webforms are defined in formal programming languages such as HTML, Perl, Java or .NET. For example:</dd>
<dd>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;">&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;form&quot;</span> <span style="color: #000066;">method</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;post&quot;</span> <span style="color: #000066;">action</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;contact_thanks.php&quot;</span>&gt;</span>
&nbsp;
        <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">p</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;bodymd&quot;</span>&gt;</span>Your Name<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">br</span>&gt;</span> 
&nbsp;
                <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Name&quot;</span>&gt;</span> 
&nbsp;
        <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">p</span>&gt;</span> 
&nbsp;
        <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">p</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;bodymd&quot;</span>&gt;</span>Your Email<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">br</span>&gt;</span> 
&nbsp;
                <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Email&quot;</span>&gt;</span>
&nbsp;
        <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">p</span>&gt;</span>
&nbsp;
        <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">p</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;bodymd&quot;</span>&gt;</span>Comments or Questions<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">br</span>&gt;</span> 
&nbsp;
                <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">textarea</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Comments&quot;</span> <span style="color: #000066;">rows</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;5&quot;</span> <span style="color: #000066;">cols</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;40&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">textarea</span>&gt;</span> 
&nbsp;
        <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">p</span>&gt;</span>
&nbsp;
        <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">p</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;bodymd&quot;</span>&gt;</span>
&nbsp;
                <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submit&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Submit&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Submit&quot;</span>&gt;</span> 
&nbsp;
                <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;reset&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Reset&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Clear Form&quot;</span>&gt;</span>
&nbsp;
       <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">p</span>&gt;</span>
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span></pre></td></tr></table></div>

</dd>
<dd>This form can be .html, .shtml, etc. But the page that the results are sent to must be a PHP page.</dd>
<dd>Email forms are also called contact forms, feedback forms, formmail, mailforms, web forms, etc.</dd>
<dd ><a class="menu_black" href="form-creator.html" title="Form Creator">Form Creator</a></dd>
<dd><a class="menu_black" href="email-form-generator.html" title="email-form-generator">Email form generator</a></dd>
<dd><a class="menu_black" href="php-forms.html" title="PHP Forms">PHP Forms</a></dd>
<dd><a class="menu_black" href="form-software.html" title="Form software">Form software</a></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/email-forms-tutorial.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Form software</title>
		<link>http://phpforms.net/tutorial/html-basics/form-software.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/form-software.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 20:23:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Form software]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=76</guid>
		<description><![CDATA[
There is no need in monotonous copy-pasting now. Our powerful  web form-builder can offer you something new. Better, faster &#38; stronger!
Besides, we have a trial version of the product for you. So,you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial at phpforms [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>There is no need in monotonous copy-pasting now. Our powerful  web form-builder can offer you something new. Better, faster &amp; stronger!<br />
Besides, we have a trial version of the product for you. So,you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial at phpforms dot net. <a title="PHPForms" href="/">PHPForms</a> can be evaluated in full as we havent imposed any limitations except for the time the product is valid. </dd>
</dl>
<dl class="spiski">
<dt><a name="form_software"></a></dt>
<dd>Forms software is an interactive online forms software that enables users with no programming skills to design, place, route and approve customized online forms. If you are conducting market research, measuring customer satisfaction, employee feedback, or collecting any other data, form creation software is all you need.</dd>
<dd>Business forms software provides users with a sense of security as their form will never get lost in the everyday shuffle of paper forms. Software for forms enables users not only to create on-line forms, but also customize them to meet their individual needs. As a rule, online <a href="http://phpforms.net">web forms</a> can be  built and published via internet with a few clicks of a button.</dd>
<dd>Forms software provides a forms-driven approach to workflowand business process management that can be used without consultants or programmers to run any business process or procedure. Forms software lets you accept online information from visitors. It allows making online forms or web forms in minutes, no matter whether you have an online website or not.<br />
You can add forms to your online web site or create web forms to accept data online.</dd>
<dd>To build a new form you must select a form template, indicate the number of fields you need, field names, the type of data that should be filled. A database form stores form data into your database. An email form sends the form data to an email address. Add input boxes, text areas, lists, drop-down boxes, checkboxes, radio buttons, and more. You can also add images and backgrounds and customize your e-mail forms or surveys with color, fonts, borders, and highlights. The forms software includes buttons, backgrounds, and XP-style icons.<br />
Moreover, you can use your own images to make individual business or personal form. This seems to be the easiest and fastest way to build website forms. </dd>
<dd>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span> <span style="color: #000066;">align</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;center&quot;</span>&gt;</span>Survey 1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span> <span style="color: #000066;">align</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;left&quot;</span>&gt;</span>
&nbsp;
               How old are you?
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">select</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">selected</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;selected&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Under 13&quot;</span>&gt;</span>Under 13<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;13-17&quot;</span>&gt;</span>13-17<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;18-24&quot;</span>&gt;</span>18-24<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;25-35&quot;</span>&gt;</span>25-35<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;36-49&quot;</span>&gt;</span>36-49<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;50-65&quot;</span>&gt;</span>50-65<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Over 65&quot;</span>&gt;</span>Over 65<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">select</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span> <span style="color: #000066;">align</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;left&quot;</span>&gt;</span>
&nbsp;
               What is your yearly income?
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">select</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">selected</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;selected&quot;</span>&gt;</span>
           -- select answer --
     <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Under $1,999&quot;</span>&gt;</span>
           Under $1,000
     <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;$1,000 - $1,999&quot;</span>&gt;</span>
          $1,000 - $1,999
     <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;$2,000 - $4,999&quot;</span>&gt;</span>
           $2,000 - $4,999
     <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;$5,000 - $49,999&quot;</span>&gt;</span>
           $5,000 - $49,999
     <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;$50,000 - $100,000&quot;</span>&gt;</span>
           $50,000 - $100,000
     <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Over $100,000&quot;</span>&gt;</span>
           Over $100,000
     <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">select</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span> <span style="color: #000066;">align</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;left&quot;</span>&gt;</span>
&nbsp;
               How frequently do you visit our site?
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">checked</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;checked&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;radio&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Daily&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span>&gt;</span>Daily<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;radio&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Weekly&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span>&gt;</span>Weekly<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;radio&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Monthly&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span>&gt;</span>Monthly<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;radio&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;First time&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span>&gt;</span>First time<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span> <span style="color: #000066;">align</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;left&quot;</span>&gt;</span>
&nbsp;
               Please rate the value of our site:
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">checked</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;checked&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;radio&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span>&gt;</span>Not helpful<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;radio&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Somewhat helpful&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span>&gt;</span>Somewhat helpful<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;radio&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Very helpful&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span>
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">label</span>&gt;</span>Very helpful<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span> <span style="color: #000066;">align</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;left&quot;</span>&gt;</span>
&nbsp;
               Enter any remaining comments below:
&nbsp;
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">textarea</span> <span style="color: #000066;">rows</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;0&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">textarea</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span> <span style="color: #000066;">align</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;left&quot;</span> <span style="color: #000066;">bgcolor</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;#cdcdcd&quot;</span>&gt;</span>
&nbsp;
               What is your favorite web site?
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span> <span style="color: #000066;">align</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;center&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;button&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Submit&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span></pre></div></div>

<p><img src="/images/form8.gif" border="0" alt="" />
</dd>
<dd><a class="menu_black" title="Form Creator" href="form-creator.html">Form Creator</a></dd>
<dd><a class="menu_black" title="email-form-generator" href="email-form-generator.html">Email form generator</a></dd>
<dd><a class="menu_black" title="PHP Forms" href="php-forms.html">PHP Forms</a></dd>
<dd><a class="menu_black" title="Email forms tutorial" href="email-forms-tutorial.html">Email forms tutorial</a></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/form-software.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP forms</title>
		<link>http://phpforms.net/tutorial/html-basics/php-forms.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/php-forms.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 20:20:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[PHP forms]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=74</guid>
		<description><![CDATA[
There is no need in monotonous copy-pasting now. Our powerful php forms-builder can offer you something better, faster &#38; stronger! Besides, we have a trial version of the product for you. So, you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial at phpforms [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>There is no need in monotonous copy-pasting now. Our powerful php forms-builder can offer you something better, faster &amp; stronger! Besides, we have a trial version of the product for you. So, you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial at phpforms dot net. <a title="PHPForms" href="/">PHPForms</a> can be evaluated in full as we haven’t imposed any limitations except for the time the product is valid.</dd>
</dl>
<h1>PHP Forms</h1>
<dl class="spiski">
<dd>PHP (Hypertext Preprocessor) is one of the most popular means of processing HTML forms. Originally it was created by Rasmus Lerdorf in 1995 and stood for Personal Home Page. It began in 1994 as a set of Common Gateway Interface binaries written in the C programming language. The Danish/Greenlandic programmer Rasmus Lerdorf created these Personal Home Page Tools to replace a small set of Perl scripts used to maintain his personal homepage. The tools served for displaying his resume and recording how much traffic his page was receiving.</dd>
<dd>PHP is a scripting language. It was designed for producing dynamic web pages. Now it can include a command line interface capability and can be used in standalone graphical applications. It is similar to other server-side scripts that provide dynamic content from a web server to a client, such as Microsoft's Active Server Pages, Sun Microsystems' JavaServer Pages, and mod_perl. PHP executes hundreds of base functions and thousands more via extensions.</dd>
<dd>The PHP Group produces the main implementation of PHP which serves as the de facto standard for PHP, because there is no formal specification now. PHP Group provides the complete source code for users to build, customize and extend for their own use. It is considered a free software released under the PHP License. But it is incompatible with the GNU General Public License (GPL) as there are restrictions on the usage of the term PHP.</dd>
<dd>PHP is a widely-used general-purpose scripting language that can be embedded into HTML. It generally runs on a web server and creates web pages taking PHP code. It is also used for command-line scripting and client-side GUI applications. It works on most web servers, operating systems and platforms free of charge. PHP can be used with many relational database management systems. Now it functions on more than 20 million websites and 1 million web servers. </dd>
<dd>PHP can be compared to a filter as it takes input from a file or stream containing text and/or PHP instructions and outputs another data; HTML is the most common output. It can automatically identify the language of the user.</dd>
<dd>One who has ever created any HTML page or started dynamic web programming, has already met with forms. Forms are special components which allow the site visitors to add information on the HTML page.</dd>
<dd>A PHP form on a web page allows a user to enter data that is sent to a server for processing. For instance, almost each company web site contains a <a href="http://phpforms.net/v2/contact_form.html">contact form</a>, so that visitors can send a message to the site owner. Such a contact form usually contains several fields - for the visitor’s name, for the email address and one for the main message. PHP forms resemble paper forms because internet users fill out the forms using checkboxes, radio buttons, or text fields. For example, the forms can be used to enter shipping or credit card data to order a product or can be used to retrieve data.</dd>
<dd>When dealing with HTML forms and PHP it is necessary to remember that any form element in HTML page will automatically be available to the PHP scripts.</dd>
<dd>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Name *<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Email *<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Phone<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Field_check<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;checkbox&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;1&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">label</span>&gt;</span>Check_1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;checkbox&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">label</span>&gt;</span>Check_2<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;checkbox&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;3&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">label</span>&gt;</span>Check_3<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Message *<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">textarea</span> <span style="color: #000066;">rows</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;5&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">textarea</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;subbut&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;button&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Submit&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span></pre></div></div>

<p><img src="/images/php-form-sample-screenshot.gif" border="0" alt="php form sample" width="500px" /></p>
</dd>
<dd><a class="menu_black" title="Form Creator" href="form-creator.html">Form Creator</a></dd>
<dd><a class="menu_black" title="email-form-generator" href="email-form-generator.html">Email form generator</a></dd>
<dd><a class="menu_black" title="Form software" href="form-software.html">Form software</a></dd>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/php-forms.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Email form generator</title>
		<link>http://phpforms.net/tutorial/html-basics/email-form-generator.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/email-form-generator.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 20:07:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Email form generator]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=71</guid>
		<description><![CDATA[
There is no need in monotonous copy-pasting now. Our powerful web form-builder  allows anyone to create email forms in a few steps. Besides, we have a trial version of the product for you. So, you can download, install and use it absolutely for free. You are welcome to request your free trial version from [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>There is no need in monotonous copy-pasting now. Our powerful web form-builder  allows anyone to create <strong>email forms</strong> in a few steps.<br /> Besides, we have a trial version of the product for you. So, you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial at phpforms dot net. <a title="PHPForms" href="/">PHPForms</a> can be evaluated in full as we haven’t imposed any limitations except for the time the product is valid.</dd>
<dd> </dd>
</dl>
<p><strong><span style="color: #b01124;">Email Form Generator</span></strong>
<dl class="spiski">
<dd>
<strong>Email form generator</strong> is a software, which helps to organize a feedback on a website without special knowledge in programming.  As a rule such option is required on any web-project in order to have a connection with subscribers. Email form itself allows  capturing data from visitors and sending it to specified e-mail address. <br/><br />
This form builder has a capability of sending data to several e-mails. <strong>Email form generator</strong> has a lot of options to design a form of required size and contents. There is a wide  range of capabilities for full customizing. A user can choose amount of fields and assign them necessary values. <strong>Email form generator</strong>  offers to choose between different types of fields. It can be a text box, a text area, a check box, a radio button, a drop-down list  or a button. <br/><br />
The face of future form can be adjusted in details: color, size, thickness of borders, font type, length of fields, etc.  You can use your own backgrounds and font types to make future form suitable for specific site design as much as possible.<br/><br />
During development process you can check the result on a graphic model, which shows future form. If needed, some features can be changed or removed. The code is created by <strong>email form generator</strong> without user interference. This makes application more versatile. Thanks to user-friendly interface of this <strong>email form generator</strong> and a lot of in-built prompts, the process of creating email form becomes easy and fast. <br/><br />
<strong>Email form generator</strong> also allows to solve a problem of automatic form submissions. This option is set by default and considers dynamically generated code, which has to be inputted by each submitter after filling up the form. If such measure is not required, it can be switched of. Other important capability is an adjustment of automatic replies to submitters. It can be a predefined message or a newsletter that can be updated by administrator. Using this form builder you can arrange redirecting user on other webpage after form submission. All you need is to define URL address of necessary page in adjustments of submit button. <br/><br />
At the last stage of development you can configure the format of received data: it can be in html or text format. When the development process is finished, all installation-specific settings will be transformed by <strong>email form generator</strong> into a code, which can be built into any place of webpage without editing. It can spare a lot of valuable business time, giving qualitative feedback on any web-project as a result.<br/><br />
<img src="/images/list_of_forms.jpg" style="width:500px; height:auto"  alt="Email Form Builder" title="Email Form generator"/>
</dd>
<dd ><a class="menu_black" href="form-builder.html" title="Form builder">Form builder</a></dd>
<dd ><a class="menu_black" href="form-creator.html" title="Form Creator">Form Creator</a></dd>
<dd><a class="menu_black" href="php-forms.html" title="PHP Forms">PHP Forms</a></dd>
<dd><a class="menu_black" href="email-forms-tutorial.html" title="Email forms">Email forms</a></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/email-form-generator.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Form creator</title>
		<link>http://phpforms.net/tutorial/html-basics/form-creator.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/form-creator.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 20:06:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Form creator]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=69</guid>
		<description><![CDATA[
There is no need in monotonous copy-pasting now. Our powerful web form-builder can offer you something new. Better, faster &#38; stronger!
Besides, we have a trial version of the product for you. So, you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial at  [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>There is no need in monotonous copy-pasting now. Our powerful web form-builder can offer you something new. Better, faster &amp; stronger!<br />
Besides, we have a trial version of the product for you. So, you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial at  phpforms dot net. <a href="/" title="PHPForms">PHPForms</a> can be evaluated in full as we haven't imposed any limitations except for the time the product is valid. </dd>
</dl>
<dl class="spiski">
<dt>
<a name="form_creator" id="form_creator">Form Creator</a>
</dt>
<dd> Form Creator is simple software which displays forms and their related prompts on the screen. With a forms creator all you need is to answer the on-screen questions, then click a button to send the completed form to the word processor set up on your computer. Documents can be further edited, printed  and saved for later revision. You may also edit the basic form templates. </dd>
<dd>Form creator lets you choose the kind of input fields you want to add to your form. You only choose the field you need and type in a label for your field. Moreover, creator forms allows specifying whether your field should be required or not. Add as many fields as you like! After you've made all your fields, simply save your form and let the form creator automatically generate the HTML code for you. You need to copy and paste the HTML code into your webpage and upload it to your server. Now the form is ready. With a form creator you can build as many forms as you like, and receive as many submissions as you like. Just make one "contact us" form and another to ask your website visitors how you could improve the site. You will be surprised what your visitors will tell you if you just ask them.</p>
</dd>
<dd>Form creator software supplies the most professional way to accept job applications, excel files, images, etc. is to let your visitors upload files to you within your actual form, rather than asking them to send you emails with files.</p>
</dd>
<dd>The data submitted from the form is sent to the e-mail address in your form setup. An email is sent out immediately after the form submission. A copy of each form submission is also stored online in your account. Website form creator permits the option to remove individual form submissions in your account if you do not need to store them.</dd>
<dd>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span>&gt;</span>
&nbsp;
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
&nbsp;
      <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
&nbsp;
          <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Name<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
&nbsp;
          <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
&nbsp;
      <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
&nbsp;
      <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
&nbsp;
          <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Phone<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
&nbsp;
          <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
&nbsp;
      <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
&nbsp;
      <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
&nbsp;
          <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Address<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
&nbsp;
          <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">textarea</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">textarea</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
&nbsp;
      <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
&nbsp;
          <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
&nbsp;
          <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
&nbsp;
      <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
&nbsp;
          <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
&nbsp;
          <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
&nbsp;
      <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
&nbsp;
      <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
&nbsp;
          <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;button&quot;</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;subbut&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Submit&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
&nbsp;
      <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
&nbsp;
         <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span></pre></td></tr></table></div>

<p>  <center><br />
 <img src="/images/form7.gif" border="0" width="500px" alt=""/></p>
<p>  </center>
 </dd>
<dd ><a class="menu_black" href="form-processor.html" title="Form Processor">Form processor</a></dd>
<dd ><a class="menu_black" href="form-builder.html" title="Form builder">Form builder</a></dd>
<dd><a class="menu_black" href="email-form-generator.html" title="email-form-generator">Email form generator</a></dd>
<dd><a class="menu_black" href="php-forms.html" title="PHP Forms">PHP Forms</a></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/form-creator.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Form builder</title>
		<link>http://phpforms.net/tutorial/html-basics/form-builder.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/form-builder.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 20:05:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Form builder]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=67</guid>
		<description><![CDATA[
There is no need in monotonous copy-pasting now. Our powerful web form-builder can offer you something new. Better, faster &#38; stronger!
Besides, we have a trial version of the product for you. So, you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial at phpforms [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>There is no need in monotonous copy-pasting now. Our powerful web form-builder can offer you something new. Better, faster &amp; stronger!<br />
Besides, we have a trial version of the product for you. So, you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial at phpforms dot net. <a title="PHPForms" href="/">PHPForms</a> can be evaluated in full as we haven’t imposed any limitations except for the time the product is valid. </dd>
</dl>
<dl class="spiski">
<dt><a name="form_builder"></a></dt>
<dd>Website form builder is a program for creating <a href="http://phpforms.net/v2/contact_form.html">contact forms</a>, online surveys, and invitations so you can collect the data, registrations and online payments you need without writing a single line of code. Form builder provides businesses and organizations with an easy way to generate any type of online form, integrate it with their website and start collecting information. Once you have begun collecting that data you can use the information you gathered in online database or export it. Forms builder is software which can be mastered by anyone, as no programming experience is needed. You can build all types of web forms, collect data online and do it simply and efficiently within minutes. </dd>
<dd> Using a form builder you can add input boxes, text areas, lists, drop-down boxes, checkboxes, radio buttons, and more. You can also select images and backgrounds and customize your e-mail forms or surveys with color, fonts, borders, and highlights with a form builder. Besides, such software allows using your own images to make unique business or personal forms like never before. This is the easiest and fastest way to make your website interactive.</dd>
<dd>Contact form builder is a visual form designer which allows you to build and deploy forms in minutes right from your web browser. Form Builder usually has an easy to understand layout based on sections and grids, onto which you place your form elements. You focus on the data you need to capture, not the pesky details. As a rule, each program of such kind includes a form builder tutorial to assist the users in creating forms step by step. The forms you build with Form<br />
Builder automatically produce nice-looking HTML and PDF output. </dd>
<dd>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Name<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Phone<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Address<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">textarea</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">textarea</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;subbut&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;button&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Submit&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span></pre></div></div>

<p><img src="/images/form6.gif" border="0" alt="" width="500px" /></p>
</dd>
<dd><a class="menu_black" title="Form Maker" href="form-maker.html">Form maker</a></dd>
<dd><a class="menu_black" title="Form Processor" href="form-processor.html">Form processor</a></dd>
<dd><a class="menu_black" title="Form Creator" href="form-creator.html">Form Creator</a></dd>
<dd><a class="menu_black" title="email-form-generator" href="email-form-generator.html">Email form generator</a></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/form-builder.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Form processor</title>
		<link>http://phpforms.net/tutorial/html-basics/form-processor.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/form-processor.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 20:04:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Form processor]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=64</guid>
		<description><![CDATA[
 There is no need in monotonous copy-pasting now. Our powerful web form-builder can offer you something new. Better, faster  &#38; stronger!
Besides, we have a trial version of the product for you. So, you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd> There is no need in monotonous copy-pasting now. Our powerful web form-builder can offer you something new. Better, faster  &amp; stronger!<br />
Besides, we have a trial version of the product for you. So, you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial at  phpforms dot net. <a title="PHPForms" href="/">PHPForms</a> can be evaluated in full as we haven't imposed any  limitations except for the time the product is valid.</p>
</dd>
</dl>
<dl class="spiski">
<dt><a name="form_processor"></a> </dt>
<dd>You can see a lot of forms on websites, which are to be filled in online. They are: registration forms, application forms, order forms, surveys and questionnaires. These forms can be built and designed even by non-programmers with the help of Form processor.</dd>
<dd> <a href="http://phpforms.net">Web form</a> processor is a tool used to gather feedback and client's information on your web site. Form processor is a script written in PHP, which is the most popular web programming language, so it is compatible with most web servers. It is usually very easy to use and it offers many advanced features. It comes with HTML code for a basic <a href="http://phpforms.net/v2/contact_form.html">contact form</a> that you can use on your website. Since no programming skills are required at all, not only webmasters and programmers use forms processor. For instance, the staff of a marketing department uses it to design a questionnaire for research. Functions that alternatively would require substantial investments in terms of expertise, effort and resources can easily be implemented with this tool. To design your form online you only need your browser and a connection to the web. The form is stored at the server. You can link to the form from within your site or email. Php form processor enables you to edit your forms from any location. While building a form you always see it being updated. </dd>
<dd> The entries of a submitted form are received by email. You can see, edit and download these entries from within your account.</p>
</dd>
<dd> Some form processors can offer many advanced features to make  the forms more sophisticated. Html form processor often supplies a lot of benefits in terms of data retrieval. </dd>
<dd>In case you already have web forms on your site, you don't  need to create new ones  any form processor can handle the forms built earlier. </dd>
<dd>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Customer *<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>case<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;radio&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;1&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">label</span>&gt;</span>case1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;radio&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">label</span>&gt;</span>case2<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;radio&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;3&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">label</span>&gt;</span>case3<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">label</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Special notes<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">textarea</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">textarea</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;subbut&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;button&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Submit&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span></pre></div></div>

<p><img src="/images/form5.gif" border="0" alt="" width="500px" /></p>
</dd>
<dd><a class="menu_black" title="Web Forms" href="web-forms.html">Web Forms</a></dd>
<dd><a class="menu_black" title="Form Maker" href="form-maker.html">Form maker</a></dd>
<dd><a class="menu_black" title="Form builder" href="form-builder.html">Form builder</a></dd>
<dd><a class="menu_black" title="Form Creator" href="form-creator.html">Form Creator</a></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/form-processor.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Form maker</title>
		<link>http://phpforms.net/tutorial/html-basics/form-maker.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/form-maker.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 20:03:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Form maker]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=62</guid>
		<description><![CDATA[
There is no need in monotonous copy-pasting now. Our powerful web form-builder can offer you something new. Better, faster &#38; stronger! Besides, we have a trial version of the product for you. So, you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial at [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>There is no need in monotonous copy-pasting now. Our powerful web form-builder can offer you something new. Better, faster &amp; stronger! Besides, we have a trial version of the product for you. So, you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial at phpforms dot net. <a title="PHPForms" href="/">PHPForms</a> can be evaluated in full as we haven’t imposed any limitations except for the time the product is valid. </dd>
</dl>
<dl class="spiski">
<dt><a name="form_maker"></a> </dt>
<dd>Form maker is a web application for creating forms that will collect, sort and store information from your web site visitors. It is a perfect solution for those who need: contact form, feedback form, or simple form-to-email; evaluation form, form with file attachments; registration form, multiple page application form, online survey; order form with math calculations, online subscription form. Form maker software sends information from web forms to email addresses or database. Form Maker can generate any <a href="http://phpforms.net">web form</a>: from simple form to complicated one. It often supports calculations, attachments, secure data protocol (SSL), auto responder, etc. With php form maker in your disposal you can configure finest form-to-mail settings, such as conditional sending, data sorting, file attachment, environment settings and plenty of other useful features. Form Maker can generate forms with all the standard fields, has templates for credit card numbers, date and time fields and a list builder for radio buttons, menus and check boxes. You can optionally accept file attachments, store submitted data in a file and send an automatic response. You'll need a web server that can run PHP. Fortunately that's about 90% of the commercial servers available. </dd>
<dd><a href="http://phpforms.net/tutorial/html-basics/html-forms.html">Html form</a> maker is quite easy to work with. Select a template, input your information, and the forms maker does the rest. Practically any form maker gives you dozens of ready-made forms you can customize. Start with the exact template that suits you the best - not just a blank screen, and add your information. The forms, which can be created on a website, implement different functions and look differently. The templates of the forms are: Invoice Form, Memo Form, Fax Cover Sheet Form, Job Application Form, Various Medical Forms, Purchase Order Form, Bid Proposal Form, Employee Time Card, Expense Report Form, and dozens more! </dd>
<dd>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Name<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>case<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">select</span>&gt;</span>
&nbsp;
                 <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;1&quot;</span>&gt;</span>case1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
&nbsp;
                 <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;</span>case2<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
&nbsp;
                 <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">option</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;3&quot;</span>&gt;</span>case3<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">option</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">select</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Special notes<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">textarea</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">textarea</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;subbut&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;button&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Submit&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span></pre></div></div>

<p><img src="/images/form4.gif" border="0" alt="" width="500px" /></p>
</dd>
<dd><a class="menu_black" title="HTML Summary" href="html-summary.html">HTML Summary</a></dd>
<dd><a class="menu_black" title="Web Forms" href="web-forms.html">Web Forms</a></dd>
<dd><a class="menu_black" title="Form Processor" href="form-processor.html">Form processor</a></dd>
<dd><a class="menu_black" title="Form builder" href="form-builder.html">Form builder</a></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/form-maker.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web forms</title>
		<link>http://phpforms.net/tutorial/html-basics/web-forms.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/web-forms.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 20:02:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Web forms]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=59</guid>
		<description><![CDATA[
There is no need in monotonous copy-pasting now. Our powerful web form-builder can offer you something new. Better, faster &#38; stronger!
Besides, we have a trial version of the product for you. So, you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial at  [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>There is no need in monotonous copy-pasting now. Our powerful web form-builder can offer you something new. Better, faster &amp; stronger!</p>
<p>Besides, we have a trial version of the product for you. So, you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial at  phpforms dot net. <a title="PHPForms" href="/">PHPForms</a> can be evaluated in full as we haven't imposed any limitations except for the time the product is valid.</p>
</dd>
</dl>
<dl class="spiski">
<dt> <a id="web_forms" name="web_forms">Web forms</a> </dt>
</dl>
<dl class="spiski">
<dd> A web form is an area that can contain form elements. Form elements are elements that allow the user to enter information in a form. The data entered by users are sent to a server for processing. PHP web form looks like a paper form because site visitors fill out the forms using checkboxes, radio buttons, or text fields. Typical use for web form is to create questionnaires, contact web form, request/register forms, surveys, polls or a front end to issues tracking systems. Each of these could have a customized form for end-users to fill out. If you need to build a lot of customized, one-off forms, a web form is the most suitable solution. Web page form is often used to enter shipping or credit card data to order a product or can be used to retrieve data (e.g., searching on a search engine). </dd>
<dd>A web form is defined in formal programming languages such as HTML, Perl, Java or .NET. Web form submit information is saved in a database table and can optionally be mailed to the e-mail address stated. </dd>
<dd> <a title="Web Forms" href="/">Web forms</a> software usually includes a web form tutorial so that anyone with no programming skills can easily create a web form. Html web form is a splendid solution for websites that need to create a number of regularly changing forms. Web form doesn't require installing a content type for each different form, instead each form is connected to a particular node. Using a form wizard you can design simple or complex forms that send you an email each time your visitors submit them. After creating the web form, you get a HTML code to paste in your website, and the form will be there and working. </dd>
<dd> It's a common knowledge that putting a simple web form tag on the contact page. Email harvesting software will find and collect it adding it on spam lists. So forms should contain a<br />
Captcha Image displaying letters and numbers which are difficult to be read by non humans, stopping 100% automated submissions. </dd>
<dd>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span>&gt;</span>
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Customer *<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Address<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">textarea</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">textarea</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Phone *<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>Special notes<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">textarea</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;fld_de9795647d&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">textarea</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;subbut&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;button&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Submit&quot;</span> <span style="color: #66cc66;">/</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span></pre></div></div>

<p><img src="/images/form3.gif" border="0" alt="" width="500px" /></p>
</dd>
<dd><a title="HTML forms" href="html-forms.html">HTML forms</a></dd>
<dd><a title="HTML Summary" href="html-summary.html">HTML Summary</a></dd>
<dd><a title="Form Maker" href="form-maker.html">Form maker</a></dd>
<dd><a title="Form Processor" href="form-processor.html">Form processor</a></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/web-forms.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Forms</title>
		<link>http://phpforms.net/tutorial/html-basics/html-forms.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/html-forms.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 20:01:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[HTML Forms]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=57</guid>
		<description><![CDATA[
You can build forms with almost every HTML input control now. Our powerful web form-builder allows doing it even without HTML knowledge. Besides, we have a trial version of the product for you. So, you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>You can build forms with almost every HTML input control now. Our powerful web form-builder allows doing it even without HTML knowledge. Besides, we have a trial version of the product for you. So, you can download, install and use it absolutely for free. You are welcome to request your free trial version from trial at phpforms dot net. <a title="PHPForms" href="/">PHPForms</a> can be evaluated in full as we haven’t imposed any limitations except for the time the product is valid.</dd>
<dd> </dd>
</dl>
<p><strong><span style="color: #b01124;">HTML Form</span></strong></p>
<dl class="spiski">
<dd><br/>FORM - With the help of  the following elements you can create questionnaires and different fields for  text inputting with the possibility of subsequent sending the submitted forms  to your server. <br/><br/>Elements for form creating: <br/><br/>FORM - creates a form <br/><br/>TEXTAREA - creates a field for inputting a few lines of text <br/><br/>SELECT - creates a menu <br/><br/>OPTION - Creates a separate items of the menu (see SELECT) <br/><br/>INPUT - creates a field in the form <br/><br/>FORM - is used to create a form. It should be the presence of initial and  ending tags. Inside the FORM element the use of the majority of HTML-elements is allowed. <br/><br/>NAME - defines the name of the form, unique to this document. Used if there is  a few forms in the document. <br/><br/>ACTION - a required attribute. Specifies the URL for sending the form content -  the path to the script of the server that acts in current form. <br/><br/>METHOD - defines the way to send the contents of the form. Possible values are  GET (default) and POST. <br/><br/>ENCTYPE - defines the method of coding the contents of the form when you send.  The default is &quot;application / x-www-form-urlencoded&quot;. <br/><br/>TARGET - defines the name of the window, which returns a result of a submitted  form. Possible values: _self, _parent, _top, _blank, or clearly specified the  name of the window. <br/><br/></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">HTML</span>&gt;</span> 
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">body</span>&gt;</span>
&nbsp;
     <span style="color: #009900;">&lt;- Creating a form -&gt;</span>
&nbsp;
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">FORM</span> <span style="color: #000066;">ACTION</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;my.php&quot;</span> <span style="color: #000066;">METHOD</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Post&quot;</span> <span style="color: #000066;">NAME</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Form&quot;</span>&gt;</span>
&nbsp;
     <span style="color: #009900;">&lt;! – Inside the form of creating a <span style="color: #000066;">text</span> box: -&gt;</span>
&nbsp;
     Last Name:
&nbsp;
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">INPUT</span> <span style="color: #000066;">TYPE</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;myname&quot;</span> <span style="color: #000066;">SIZE</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;20&quot;</span> <span style="color: #000066;">VALUE</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;VALUE&quot;</span>&gt;</span>
&nbsp;
     <span style="color: #009900;">&lt;! – The <span style="color: #ff0000;">&quot;Send&quot;</span> button: -&gt;</span>
&nbsp;
     <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">INPUT</span> <span style="color: #000066;">TYPE</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submit&quot;</span> <span style="color: #000066;">VALUE</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Otpravit&quot;</span>&gt;</span>
&nbsp;
     <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> FORM&gt;</span>
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> body&gt;</span> 
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> HTML&gt;</span></pre></td></tr></table></div>

<p>
</dd>
<dd ><a class="menu_black" href="meta-tag-in-html.html" title="META tag in HTML">META tag in HTML</a></dd>
<dd ><a class="menu_black" href="color-codes-in-html.html" title="Color Codes in HTML">Color Codes in HTML</a></dd>
<dd ><a class="menu_black" href="frames-in-html.html" title="Frames in HTML">Frames in HTML</a></dd>
<dd ><a class="menu_black" href="mandatory-tags.html" title="Mandatory tags of HTML">Mandatory tags of HTML</a>
</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/html-forms.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Image in HTML page</title>
		<link>http://phpforms.net/tutorial/html-basics/image-in-html-page.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/image-in-html-page.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 20:00:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Image in HTML page]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=55</guid>
		<description><![CDATA[
 Image can be inserted into HTML document by the code 


&#60;img src=&#34;ris.jpg&#34; alt=&#34;”HTML&#34; width=&#34;100&#34; height=&#34;140&#34; /&#62;


 Lets analyze parameter value of &#60;img&#62; tag. As you can see, this is a single tag. "Src" parameter specifies the path to the image (absolute or relative). The rules that specifies a relative path is the same as [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd> <strong>Image can be inserted</strong> into HTML document by the code </dd>
<dd>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;ris.jpg&quot;</span> <span style="color: #000066;">alt</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;”HTML&quot;</span> <span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;100&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;140&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></pre></div></div>

</dd>
<dd> Lets analyze parameter value of &lt;img&gt; tag. As you can see, this is a single tag. "Src" parameter specifies the path to the image (absolute or relative). The rules that specifies a relative path is the same as for the links. The width and height parameters define the width and height of the <strong>image in pixels</strong> in the HTML document. "Alt" parameter specifies the alternative text - the text that appears in your browser when  image downloading is disabled. </dd>
<dd> <a class="menu_black" title="Select Form" href="select-form.html">Select Form</a> </dd>
<dd> <a class="menu_black" title="Mandatory tags" href="mandatory-tags.html">Mandatory tags</a> </dd>
<dd><a class="menu_black" title="HTML Summary" href="html-summary.html">HTML Summary</a> </dd>
<dd><a class="menu_black" title="Web Forms" href="web-forms.html">Web Forms</a> </dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/image-in-html-page.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Select Form</title>
		<link>http://phpforms.net/tutorial/html-basics/select-form.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/select-form.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 19:59:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Select Form]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=53</guid>
		<description><![CDATA[

SELECT creates a menu, fill out the type of &#34;choice of one item of many&#34; or &#34;Select multiple items from the many.&#34; Must be inside FORM element and have at the start or end tags. It contains several elements OPTION, otherwise it makes no sense.
MULTIPLE - offers a choice of several menu items while keeping [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>
SELECT creates a menu, fill out the type of &quot;choice of one item of many&quot; or &quot;Select multiple items from the many.&quot; Must be inside FORM element and have at the start or end tags. It contains several elements OPTION, otherwise it makes no sense.<br/><br />
MULTIPLE - offers a choice of several menu items while keeping Ctrl key pressed. By default you can choose only one menu item.<br/><br />
NAME - defines the name of the menu unique for current form that will be used for sending data to server. Each selected menu item when sending to the server will take on form: name / value. Value is formed by OPTION element.<br/><br />
SIZE - determines the number of visible items in the menu. If the value of this attribute is greater than one, the result will be a list of items.<br/><br />
OPTION is used only with SELECT element. OPTION element describes the individual menu items. There is no ending tag for this element.</p>
<ul>
<li>SELECTED - specifies the menu item that will be initially selected when loading the document. If the menu type is &quot;one of many&quot;, only one menu item can be marked by SELECTED flag. </li>
<li>VALUE - specifies the current item value that will be used along with other information about the contents of the filled forms. When sending information to the server, this value will be merged with the value of NAME attribute in the SELECT element. </li>
</ul>
<p>
</dd>
<dd>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">HTML</span>&gt;</span> <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">body</span>&gt;</span> 
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span> <span style="color: #000066;">method</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'post'</span> <span style="color: #000066;">action</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'all.php'</span>&gt;</span> 
     Color Scheme: <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">br</span>&gt;</span> 
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">SELECT</span> <span style="color: #000066;">NAME</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;color&quot;</span>&gt;</span> 
      <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">OPTION</span> <span style="color: #000066;">VALUE</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Standard&quot;</span> SELECTED&gt;</span> <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> OPTION&gt;</span> 
      <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">OPTION</span> <span style="color: #000066;">VALUE</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'Brick'</span>&gt;</span> Brick <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> OPTION&gt;</span> 
      <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">OPTION</span> <span style="color: #000066;">VALUE</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'Gray Mouse'</span>&gt;</span> Gray Mouse <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> OPTION&gt;</span> 
      <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">OPTION</span> <span style="color: #000066;">VALUE</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'Ship Bottom'</span>&gt;</span> Ship Bottom <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> OPTION&gt;</span> 
      <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">OPTION</span> <span style="color: #000066;">VALUE</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'Black Night'</span>&gt;</span> Black Night <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> OPTION&gt;</span> 
      <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">OPTION</span> <span style="color: #000066;">VALUE</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'White Light'</span>&gt;</span> White Light <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> OPTION&gt;</span> 
      <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">OPTION</span> <span style="color: #000066;">VALUE</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'Yellow List'</span>&gt;</span> Yellow List <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> OPTION&gt;</span> 
      <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">OPTION</span> <span style="color: #000066;">VALUE</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'Pink Myth'</span>&gt;</span> Pink Myth <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> OPTION&gt;</span> 
      <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">OPTION</span> <span style="color: #000066;">VALUE</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'Green USD'</span>&gt;</span> Green USD <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> OPTION&gt;</span> 
      <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">OPTION</span> <span style="color: #000066;">VALUE</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'Standard'</span>&gt;</span> Standard <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> OPTION&gt;</span> 
    <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> SELECT&gt;</span> 
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'submit'</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'submit'</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">'go'</span>&gt;</span> 
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> form&gt;</span> 
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> body&gt;</span> <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span> HTML&gt;</span></pre></td></tr></table></div>

</dd>
<dd><a class="menu_black" href="inserting-javascript.html" title="Inserting javascript">Inserting javascript</a></dd>
<dd ><a class="menu_black" href="tables-in-html.html" title="Tables in HTML">Tables in HTML</a></dd>
<dd ><a class="menu_black" href="html-forms.html" title="HTML forms">HTML forms</a></dd>
<dd ><a class="menu_black" href="html-summary.html" title="HTML Summary">HTML Summary</a></dd>
</dl>
<p><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/select-form.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inserting javascript</title>
		<link>http://phpforms.net/tutorial/html-basics/inserting-javascript.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/inserting-javascript.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 19:53:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Inserting javascript]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=51</guid>
		<description><![CDATA[

SCRIPT - inserts a script in the document. Text of the script itself is located between the beginning and ending tags or defined as a URL to a file containing the script, in the SRC attribute.
LANGUAGE - defines the language in which the script s written, for example, JavaScript.
SRC - defines the URL to the [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd><br/><br />
SCRIPT - inserts a script in the document. Text of the script itself is located between the beginning and ending tags or defined as a URL to a file containing the script, in the SRC attribute.<br/><br />
LANGUAGE - defines the language in which the script s written, for example, JavaScript.<br/><br />
SRC - defines the URL to the script.<br/><br />
Example 1:
</dd>
<dd>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">SCRIPT</span> <span style="color: #000066;">LANGUAGE</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;JavaScript&quot;</span>&gt;</span> 
<span style="color: #009900;">&lt;-- </span>
<span style="color: #009900;">window.location <span style="color: #66cc66;">=</span> <span style="color: #ff0000;">&quot;http://www.ya.uk&quot;</span>; </span>
<span style="color: #009900;">     <span style="color: #66cc66;">/</span> <span style="color: #66cc66;">/</span> -&gt;</span> 
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">SCRIPT</span>&gt;</span></pre></td></tr></table></div>

</dd>
<dd>
Where to place the script:<br/><br />
SCRIPT element can be either in the header (inside HEAD element) or in the document body (inside the BODY).
</dd>
<dd><a class="menu_black" href="input-form.html" title="Input Form">Input Form</a></dd>
<dd><a class="menu_black" href="select-form.html" title="Select form">Select form</a></dd>
<dd ><a class="menu_black" href="image-in-html.html" title="Image in HTML page ">Image in HTML page</a></dd>
<dd ><a class="menu_black" href="html-forms.html" title="HTML forms">HTML forms</a></dd>
</dl>
<p><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/inserting-javascript.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Input Form</title>
		<link>http://phpforms.net/tutorial/html-basics/input-form.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/input-form.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 19:53:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Input Form]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=49</guid>
		<description><![CDATA[
 INPUT - creates a form field (button, input box, checkbox, etc.), whose contents can be changed or activated by the user. The element has no ending tag. INPUT element must be inside the FORM element.
NAME - defines the name used when transferring the contents of the form to the server. This attribute is required [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd> INPUT - creates a form field (button, input box, checkbox, etc.), whose contents can be changed or activated by the user. The element has no ending tag. INPUT element must be inside the FORM element.</p>
<p>NAME - defines the name used when transferring the contents of the form to the server. This attribute is required for most types (attribute TYPE – look below) of INPUT element and is commonly used to identify the field or group of fields related logically.</p>
<p>TYPE - specifies the type of field for inputting data. By default it is "text". Possible values:</p>
<p><span style="font-weight: bold;">text</span> - creates a text boxfor one ext line. Typically used together with SIZE and MAXLENGTH attributes;</p>
<p><span style="font-weight: bold;">textarea</span> - a field for inputting more than one text lines. But for this purpose TEXTAREA element is better to use;</p>
<p><span style="font-weight: bold;">file</span> - enables tuser to attach a file to the current form. Can be used in conjunction with ACCEPT attribute;</p>
<p><span style="font-weight: bold;">password</span> - creates a text box for a single line, but the inputted text is displayed as icons "*", thus hiding its contents from curious eyes;</p>
<p><span style="font-weight: bold;">checkbox</span> - an input field for attributes of Boolean type ( "yes" / "no") or for attributes that can take multiple values simultaneously. These attributes are represented by a few checkbox fields that can have the same name. Each selected checkbox field creates a separate pair of name / value in the information sent to the server, even if there would be duplicate names as a result. The field of this type must have the NAME and VALUE attributes, as well as an optional attribute CHECKED that indicates that the field is selected;</p>
<p><span style="font-weight: bold;">radio</span> - an input field for attributes that take on one of several possible values. All buttons (radio buttons) in the group must have the same names, but only the selected button in a group creates a pair of name / value, which will be sent to the server. As for the checkbox fields, CHECKED attribute is optional, it can be used to determine the selected button in the radio button;</p>
<p><span style="font-weight: bold;">submit</span> - creates a button for sending information inputted into form to the server. VALUE attribute in this case changes the button marking, whose default value depends on the browser. If the NAME attribute specified, then when you press this button for the information sending to a server, a pair of name / value specified for attribute SUBMIT is added, otherwise the pair is not added;</p>
<p><span style="font-weight: bold;">image</span> - creates a graphical button image that initializes the data transferring to the server. Location of the image can be set using the attribute SRC. When sending data a server gets the x and y coordinates of the point of image where a mouse button clicked. Coordinates are measured from the top left corner of the image. Meanwhile the information about the field of image type is stored in the form of two pairs of name / value. The name value is obtained by adding to the name of the appropriate field suffixes ". X" (abscissa), and ". Y" (ordinate);</p>
<p><span style="font-weight: bold;">reset</span> - creates a button that drops the values of form fields to their default values. When you click it the data to the server are not sent. The button can be changed using the attribute VALUE. By default, the button marking depends on the browser version;</p>
<p><span style="font-weight: bold;">hidden</span> - fields of this type will not appear on the screen that allows for placing "secret" information in the form. The content of this field is sent to the server as name / value along with the rest of the form information. This field is useful for sending data from script to script invisibly for user;</p>
<p><span style="font-weight: bold;">button</span> - allows you to create a custom button to an HTML document that, with skilful use of JavaScript, adds more functionality to form. NAME attribute allows you to specify the name of the button, which can be used for any function in the script. VALUE attribute allows to specify the text displayed on the button in the document.</p>
<p>VALUE - defines text titles for the fields of any type, including buttons. For such fields as the checkbox or radio, will return to the value specified in VALUE attribute.</p>
<p>CHECKED - indicates that the checkbox and/or radio field types (see above attribute TYPE) are activated.</p>
<p>SIZE - determines the field size in characters. For example, to define a field with the apparent width of 24 characters, you must specify the SIZE = "24".</p>
<p>MAXLENGTH - defines the maximum number of characters that you can enter in the text box. It may be greater than the number of characters specified in the attribute SIZE. The default number of characters is not limited.</p>
<p>SRC - specifies the URL-address of the image used in the creation of graphical buttons. Used in conjunction with attribute TYPE = "image".</p>
<p>ALIGN - determines the way of vertical alignment for the image. Used in conjunction with attribute TYPE = "image". Completely analogous to attribute ALIGN of IMG element. The default value is ‘bottom’.</p>
<p>ACCEPT - specifies the type of file. Used only in conjunction with the parameter TYPE = "file". The value is a MIME-type.</p>
<p>Example: </dd>
<dd>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">form</span> <span style="color: #000066;">action</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;all.php&quot;</span> <span style="color: #000066;">method</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;POST&quot;</span>&gt;</span>
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;secret&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;hidden&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Hidden field&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span> 
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;act&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;hidden&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;search&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span> 
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">checked</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;checked&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;ppp&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;radio&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;My&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span> I 
&nbsp;
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;ppp&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;radio&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;NoMy&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span> not I 
&nbsp;
&nbsp;
Name: 
&nbsp;
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">maxlength</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;60&quot;</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;textfield&quot;</span> <span style="color: #000066;">size</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;30&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;text&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;My name&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span> 
&nbsp;
&nbsp;
Password: 
&nbsp;
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;passwd&quot;</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;password&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span> 
&nbsp;
&nbsp;
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">input</span> <span style="color: #000066;">type</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;submit&quot;</span> <span style="color: #000066;">value</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;Submit&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span> 
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!-- FORM--&gt;</span> 
&nbsp;
<span style="color: #808080; font-style: italic;">&lt;!-- body--&gt;</span> <span style="color: #808080; font-style: italic;">&lt;!-- html--&gt;</span> 
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">form</span>&gt;</span></pre></div></div>

<dd><a class="menu_black" title="HTML Textarea" href="html-textarea.html">HTML Textarea</a></dd>
<dd><a class="menu_black" title="Form Processor" href="form-processor.html">Form Processor</a></dd>
<dd><a class="menu_black" title="Select Form" href="select-form.html">Select Form</a></dd>
<dd><a class="menu_black" title="Image in HTML page " href="image-in-html.html">Image in HTML page</a></dd>
</dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/input-form.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Directories in HTML</title>
		<link>http://phpforms.net/tutorial/html-basics/directories-in-html.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/directories-in-html.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 19:51:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Directories in HTML]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=45</guid>
		<description><![CDATA[
Using subdirectories 
Several years ago the majority of servers allowed to use only one directory, and the entire page, including the IMAGE files were saved in this single directory.
Today almost all servers allow to work with subdirectories. I really advise you to use this opportunity to structure your pages.
First, if your page has several sections, [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>Using subdirectories </dd>
<dd>Several years ago the majority of servers allowed to use only one directory, and the entire page, including the IMAGE files were saved in this single directory.</dd>
<dd>Today almost all servers allow to work with subdirectories. I really advise you to use this opportunity to structure your pages.<br/><br />
First, if your page has several sections, specify a directory for each section. And in the main directory, you'll go into a subdirectory in accordance with user's choice.<br />
Here&rsquo;s the example. Gorod.com site has two sections – one for creating webpages and one for information about Israel. Accordingly, I created two subdirectories: WEB-MANUAL and ISRAEL. And from the head section the control is transferred to one of these subdirectories.<br />
Also it&rsquo;s reasonable to make separated subdirectories for IMAGE files, applets for Java, responses to the message form. <br/><br />
Suppose you have a main directory, which is called ROOT and you've created a subdirectory SUB1. Let&rsquo;s consider the transitions between these directories.</dd>
<dd>1. Reference from the main ROOT directory to subdirectory SUB1:</dd>
<dd>
<pre id="form1" style="border: 1px solid rgb(238, 238, 238); padding: 10px;">&lt;a href=&quot;sub1/you_file.html&quot;&gt; Your image or link &lt;/ a&gt;</pre>
</dd>
<dd>2. Reference from the SUB1 subdirectory to main directory ROOT:</dd>
<dd>
<pre id="form2" style="border: 1px solid rgb(238, 238, 238); padding: 10px;">&lt;a href=&quot;../you_file.html&quot;&gt; Your image or link &lt;/ a&gt;</pre>
</dd>
<dd>  Consider the more general case - 3 directories.<br/><br />
Suppose that in a subdirectory SUB1 you made its subdirectory SUB2, that is, you have next structure:<br/><br />
ROOT/SUB1/SUB2<br/><br />
All the possible transitions between these directories are shown below:</dd>
<dd>1.ROOT-> SUB1: </dd>
<dd>
<pre id="form3" style="border: 1px solid rgb(238, 238, 238); padding: 10px;">&lt;a href=&quot;sub1/you_file.html&quot;&gt; Your image or link &lt;/ a&gt; </pre>
</dd>
<dd>2.ROOT-> SUB2:</dd>
<dd>
<pre id="form4" style="border: 1px solid rgb(238, 238, 238); padding: 10px;">&lt;a href=&quot;sub1/sub2/you_file.html&quot;&gt; Your image or link &lt;/ a&gt; </pre>
</dd>
<dd> 3.SUB1-> ROOT:</dd>
<dd>
<pre id="form5" style="border: 1px solid rgb(238, 238, 238); padding: 10px;">&lt;a href=&quot;../you_file.html&quot;&gt; Your image or link &lt;/ a&gt; </pre>
</dd>
<dd>4.SUB1-> SUB2: </dd>
<dd>
<pre id="form7" style="border: 1px solid rgb(238, 238, 238); padding: 10px;">&lt;a href=&quot;sub2/you_file.html&quot;&gt; Your image or link &lt;/ a&gt; </pre>
</dd>
<dd>5.SUB2-> SUB1:</dd>
<dd>
<pre id="form8" style="border: 1px solid rgb(238, 238, 238); padding: 10px;">&lt;a href=&quot;../you_file.html&quot;&gt; Your image or link &lt;/ a&gt;</pre>
</dd>
<dd>6.SUB2-> ROOT: </dd>
<dd>
<pre id="form9" style="border: 1px solid rgb(238, 238, 238); padding: 10px;">&lt;a href=&quot;../../you_file.html&quot;&gt; Your image or link &lt;/ a&gt;</pre>
</dd>
<dd><a class="menu_black" href="html-hyperlinks.html" title="Html Hyperlinks">Html Hyperlinks</a></dd>
<dd><a class="menu_black" href="form-processor.html" title="Form Processor">Form Processor</a></dd>
<dd><a class="menu_black" href="input-form.html" title="Input Form">Input Form</a></dd>
<dd><a class="menu_black" href="inserting-javascript.html" title="Inserting javascript">Inserting javascript</a></dd>
</dl>
<p>                <br/></p>
<p>                <br/></p>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/directories-in-html.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Html Hyperlinks</title>
		<link>http://phpforms.net/tutorial/html-basics/html-hyperlinks.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/html-hyperlinks.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 19:50:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Html Hyperlinks]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=43</guid>
		<description><![CDATA[
Hyperlink in the HTML language is defined by tag &#60;a&#62; &#60;/a&#62;. For example line


1
&#60;a href=&#34;html.rar&#34;&#62; Download HTML manual&#60;/a&#62;



Download HTML manual

Href parameter determines the place of the document the hyperlink refers to. In this example, the relative link refers to a document html.rar, located in the same directory as the HTML page is. Absolute link is [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>Hyperlink in the HTML language is defined by tag &lt;a&gt; &lt;/a&gt;. For example line</dd>
<dd>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;html.rar&quot;</span>&gt;</span> Download HTML manual<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span></pre></td></tr></table></div>

</dd>
<dd>
<h2>Download HTML manual</h2>
</dd>
<dd>Href parameter determines the place of the <strong>document the hyperlink</strong> refers to. In this example, the relative link refers to a document html.rar, located in the same directory as the HTML page is. Absolute link is defined as follows:
</dd>
<dd>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
</pre></td><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;http://webdesign.net-soft.ru/html.rar&quot;</span>&gt;</span>
Download tutorial on HTML language<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span></pre></td></tr></table></div>

</dd>
<dd>It looks similar to the previous link, but also determines the exact location of the document</dd>
<dd>Rules for placement of relative links in the HTML language</dd>
<dd>If the document that link refers to is located in a directory (folder) on the lower level, lets say dir, the href parameter value will take the form of href = "dir / html.rar", and if the document is located in the level above, we will need to write href ="../ html.rar ".
</dd>
<dd ><a class="menu_black" href="mandatory-tags.html" title="Mandatory tags of HTML">Mandatory tags of HTML</a></dd>
<dd><a class="menu_black" href="select-form.html" title="Select Form">Select Form</a></dd>
<dd><a class="menu_black" href="html-textarea.html" title="HTML Textarea">HTML Textarea</a></dd>
<dd><a class="menu_black" href="input-form.html" title="Input Form">Input Form</a></dd>
</dl>
<p><br/><br/></p>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/html-hyperlinks.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Frames in HTML</title>
		<link>http://phpforms.net/tutorial/html-basics/frames-in-html.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/frames-in-html.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 19:47:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Frames in HTML]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=41</guid>
		<description><![CDATA[
Frame is a table, in which another HTML document downloads. Many sites have a frame structure, and this site is no exception. Menu of our site is loaded into the frame. How is this performed? Look at this: 


    Your browser does not support frames



Name of the parameters

"Name "- is the name [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>Frame is a table, in which another HTML document downloads. Many sites have a frame structure, and this site is no exception. Menu of our site is loaded into the frame. How is this performed? Look at this: </dd>
<dd>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">    Your browser does not support frames</pre></div></div>

</dd>
<dd>
<h2>Name of the parameters</h2>
</dd>
<dd><em>"Name </em>"- is the name of a frame, <em>"src"</em> - the path to the page downloaded into the frame; <em>"width" </em>and <em>"height" </em>is the width and height of the frame respectively. <em>"Scrolling</em>" parameter determines whether the scroll bars are displayed in a frame. If this parameter is not registered in your HTML code, then scroll bars appear when it is needed, if it is equal to "no", then scroll bars are not visible, if - "yes", then bars are displayed in any case. While following the link in a simple HTML-document, the current document substitutes for the new one in the browser's window. If you need to send the content to the frame, it should have the unique name, which is set by the attribute name. In this case, while creating the link in the tag &lt;A&gt;, it is necessary to indicate target parameter, the frame name acts as the value. For our frame &lt;a target="I2"&gt;.</dd>
<dd><a class="menu_black" title="Color Codes in HTML" href="color-codes-in-html.html">Color Codes in HTML</a></dd>
<dd><a class="menu_black" title="Html Forms" href="html-forms.html">HTML Forms</a></dd>
<dd><a class="menu_black" title="Mandatory tags of HTML" href="mandatory-tags.html">Mandatory tags of HTML</a></dd>
<dd><a class="menu_black" title="Html Hyperlinks" href="html-hyperlinks.html">HTML Hyperlinks</a></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/frames-in-html.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Meta tag in HTML</title>
		<link>http://phpforms.net/tutorial/html-basics/meta-tag-in-html.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/meta-tag-in-html.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 19:40:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Meta tag in HTML]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=34</guid>
		<description><![CDATA[

META tags description in NAME group:
Author
Author tag must contain the author's name. If the site belongs to some specific organization,it will be reasonable to use the "Copyright".
Examples:

&#60;META Name=”Author” content=”James Brown”&#62;
&#60;META Name=”Copyright” content=”My Copyright”&#62;


 Description
Description META tag provides a brief html-page description. It is used by search engines for indexing and as a brief annotation in [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>
<p>META tags description in NAME group:</p>
<p><strong>Author</strong></p>
<p>Author tag must contain the author's name. If the site belongs to some specific organization,it will be reasonable to use the "Copyright".</p>
<p>Examples:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">Name</span><span style="color: #66cc66;">=</span>”Author” <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span>”James Brown”&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">Name</span><span style="color: #66cc66;">=</span>”Copyright” <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span>”My Copyright”&gt;</span></pre></div></div>

</dd>
<dd> <strong>Description</strong></p>
<p>Description META tag provides a brief html-page description. It is used by search engines for indexing and as a brief annotation in the response to a request alongside with link. And exactly the contents of this tag helps user of search engine to define whether your site corresponds to his query or doesn"t.</p>
<p>If Description tag is missing in the code, search engines use the first line of the text or text fragment with detected key word.</p>
<p>The preferable length of the description is not more than 80 characters.</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">Name</span><span style="color: #66cc66;">=</span>”Description” <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span> ”.. .”&gt;</span></pre></div></div>

</dd>
<dd> <strong>Document-state</strong></p>
<p>Document-state META tag - is designed to control the indexing of search robots. It can take on one of two values:</p>
<p><span style="text-decoration: underline;">Static </span>- if there is no need to index this page in the future.</p>
<p><span style="text-decoration: underline;">Dynamic</span> - for regular indexing (by default).</p>
<p>Mode "Static" is intended for pages that do not change in principle. If the content of your page changes from time to time, then usage of this tag is optional.</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">Name</span><span style="color: #66cc66;">=</span>”Document-state” <span style="color: #000066;">content</span> <span style="color: #66cc66;">=</span>”Dynamic”&gt;</span></pre></div></div>

</dd>
<dd> <strong>Generator</strong></p>
<p>Generator META tag- is just one of the "nice" family of tags that are widely used by HTML code generators for their own purposes. Typically these tags do not carry any the payload for a site owner.
</dd>
<h3 class="h3"><strong>Keywords</strong></h3>
<dd> Keywords<strong> </strong>META tag is used by search engines for relevance assessing. The words contained in Keywords tag, are considered by search engines as a recommendation. Creating a keyword list for Keywords META tag you should use the words contained in the text. Words that are not contained in the text can be used in very small quantities, two or three words. They must be embedded in the end of the list. Key words should not be repeated in the <strong>Keywords tag</strong>, in extreme cases, not more than twice. In the Keywords META tag is reasonable to use no more than 10 words, a larger number will not increase relevancy. In most cases search engines find plural keywords (e.g., cats), even if the search is set for the singular word (e.g., cat). That is why it"s recommended to input English plural nouns in Keywords META tag. Some<strong> search engine robots</strong> do not move to a new line during the Keywords META tag analysis, therefore, it"s not advisable to break it into several lines.</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">Name</span><span style="color: #66cc66;">=</span>”Keywords” <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span>”primer, META, tega”&gt;</span></pre></div></div>

</dd>
<dd> If the document is written in several languages, you can use the extra "lang" attribute for encoding selection (see description of Content-Language META tag).</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">Name</span><span style="color: #66cc66;">=</span>”Keywords” <span style="color: #000066;">lang</span><span style="color: #66cc66;">=</span>”ru” <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span>”META tag example”&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">Name</span><span style="color: #66cc66;">=</span>”Keywords” <span style="color: #000066;">lang</span><span style="color: #66cc66;">=</span>”en-us” <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span>”META tag example”&gt;</span></pre></div></div>

</dd>
<dd> But more preferable is making separate pages, each for one language, with switching from one to another, using the tag &lt;A&gt; and &lt;Link&gt;.</p>
<p><strong>Resource-type</strong></p>
<p>Resource-type META tag - describes the state of the current document. If its the value differs from the "Document", then search engines will not index it. This META tag is designed for use in large projects with many different types of documents.</p>
<p>Some possible values are:</p>
<p>* Build</p>
<p>* Classification</p>
<p>* Creation</p>
<p>* Document - accept the default.</p>
<p>* Formatter</p>
<p>* Host</p>
<p>* Operator</p>
<p>* Random text</p>
<p>* Rating</p>
<p>* Site-languages</p>
<p>* Subject</p>
<p>* Template</p>
<p>* Version</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">Name</span><span style="color: #66cc66;">=</span>”Resource-<span style="color: #000066;">type</span>” <span style="color: #000066;">content</span> <span style="color: #66cc66;">=</span>”Document”&gt;</span></pre></div></div>

</dd>
<dd> <strong>Revisit</strong></p>
<p>Revisit META tag - shows to search engine, in how many days he needs to return to reindex this document.</p>
<p>Example (to come once a week):</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">Name</span><span style="color: #66cc66;">=</span>”Revisit” <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span>”<span style="color: #cc66cc;">7</span>”&gt;</span></pre></div></div>

</dd>
<dd> <strong>Robots</strong></p>
<p>Robots META tag contains guidance for the search engines robots that collect information about HTML documents in the network. Value of Robots feature can consist of the following directives, separated by commas:</p>
<p>* Index - this page should be indexed.</p>
<p>* Noindex - this page should not be indexed.</p>
<p>* Follow - to track the hyperlinks on the page.</p>
<p>* Nofollow - no tracking hyperlinks on the page.</p>
<p>* All - = index, follow (set by default).</p>
<p>* None - = noindex, nofollow.</p>
<p>Tag &lt;META name=Robots content="all"&gt; does not change anything in the search engine robot, as well as the importance of "all" is set by default.</p>
<p>But if the page is created dynamically or is updated very often, there is no point in its indexing, as well as information about a page in the search engine and its real content will be different. In this case you can recommend the search engine not to index this page, and only to monitor hyperlinks to index the rest of the site</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">name</span><span style="color: #66cc66;">=</span>Robots <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span>”noindex,follow”&gt;</span></pre></div></div>

</dd>
<dd> Using the tag that prohibits the tracking of hyperlinks &lt;META name=Robots content="index,nofollow"&gt; some part of the site may not be indexed, because inside of the site the robot move along hyperlinks. And pages with blocked transitions will not be indexed.</p>
<p>Robots META tag takes precedence over the directives of management defined in the file robots.txt.</p>
<p><strong>Subject</strong></p>
<p>META tag Subject used by search engines to determine subject matter of the document. But until the search engines do not agree their classification tables, the use of this tag is not always justified.</p>
<p><strong>URL</strong></p>
<p>META tag URL - is intended for excluding the generated pages and mirrors from indexing. Met this tag, the search engine robot must stop indexing of the current document and click on the specified link.</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">Name</span><span style="color: #66cc66;">=</span>”URL” <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span> “http:<span style="color: #66cc66;">//</span>www.Main-Site.com”&gt;</span></pre></div></div>

</dd>
<dd> <span style="text-decoration: underline;"><strong>Description of META Tag of HTTP-EQUIV group: </strong></span></dd>
<dd> <strong> Content-Language</strong></p>
<p>Content-Language META tag- it is an indication of the document language. Used by search engines when indexing. Although most of them are able to distinguish the language by the text.</p>
<p>Some possible values (standard [ISO639], [ISO3166]):</p>
<p>de - German</p>
<p>el - Greek</p>
<p>en - English</p>
<p>en-GB - English - United Kingdom</p>
<p>en-US - English, American version</p>
<p>en-cockney - English, cockney dialect</p>
<p>es - Spanish</p>
<p>fr - French</p>
<p>it - Italian</p>
<p>i-navajo - Navajo (North America)</p>
<p>ja - Japanese</p>
<p>he - Hebrew</p>
<p>nl - Dutch</p>
<p>ru - Russian</p>
<p>pt - Portuguese</p>
<p>x-klingon - Code "x" denotes the experimental language code</p>
<p>zh - Chinese</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">HTTP-EQUIV</span><span style="color: #66cc66;">=</span>”Content-<span style="color: #000066;">language</span>” <span style="color: #000066;">content</span> <span style="color: #66cc66;">=</span>”ru”&gt;</span></pre></div></div>

</dd>
<dd> In the HTML 4.0 specification there is an alternative possibility of an explicit indication of the language - &lt;html lang="en"&gt;</p>
<p><strong>Content-Script-Type</strong></p>
<p>META tag Content-Script-Type - Definition of the programming language scripts.</p>
<p>Some of the possible values: text / javascript</p>
<p>text / perlscript</p>
<p>text / tcl</p>
<p>text / vbscript - JavaScript (set the default).</p>
<p>- PerlScript.</p>
<p>- TCL.</p>
<p>- VBScript.</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">HTTP-EQUIV</span><span style="color: #66cc66;">=</span>”Content-Script-<span style="color: #000066;">Type</span>” <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span>”<span style="color: #000066;">text</span><span style="color: #66cc66;">/</span>javascript”&gt;</span></pre></div></div>

</dd>
<dd> If the Content-Script-Type tag is not used, the type of programming language for the scripts that differs from that set by default, must be specified directly in each &lt;SCRIPT&gt; tag, sample &lt;SCRIPT type="text/javascript"&gt;.</p>
<p><strong>Content-Style-Type</strong></p>
<p>META tag Content-Style-Type - indicates stylesheet language, "text / css" value is adopted by default. If you are satisfied with it and you don"t use &lt;Style&gt; and &lt;Span&gt; tags in the document, then the usage of this tag is optional.</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">HTTP-EQUIV</span><span style="color: #66cc66;">=</span>”Content-Style-<span style="color: #000066;">Type</span>” <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span>”<span style="color: #000066;">text</span><span style="color: #66cc66;">/</span>css”&gt;</span></pre></div></div>

</dd>
<dd> <strong>Content-Type</strong></p>
<p>Content-Type META tag - is responsible for document type indication and symbol coding.</p>
<p>Usage of Content-Type META tag has some nuances:</p>
<p>* Firstly, the symbol coding of the text should correspond to the coding specified in the tag.</p>
<p>* Secondly, the server should not change the text coding during the query processing in the browser.</p>
<p>* Thirdly, if the server changes the text coding, it must adjust or remove Content-Type META tag.</p>
<p><strong>Attention!</strong></p>
<p>Content-Type META tag is often inserted by HTML code generators.</p>
<p>Windows-1251 - Cyrillic (Windows)</p>
<p>KOI8-r - Cyrillic (KOI8-R)</p>
<p>cp866 - Cyrillic (DOS)</p>
<p>Windows-1252 - Western Europe (Windows)</p>
<p>Windows-1250 - Central Europe (Windows)</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">HTTP-EQUIV</span><span style="color: #66cc66;">=</span>”Content-<span style="color: #000066;">Type</span>” <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span>”<span style="color: #000066;">text</span><span style="color: #66cc66;">/</span>html; <span style="color: #000066;">charset</span><span style="color: #66cc66;">=</span>windows-<span style="color: #cc66cc;">1251</span>?&gt;</span></pre></div></div>

</dd>
<dd> <strong>Expires</strong></p>
<p>Expires META Tags - manages the cache. If the date specified in the tag has passed, the browser must make a recurring network request, and not use the copy from the cache. If the past date is initially set, the document will not be cached.</p>
<p>Some search robots may not index the document with obsolete date.</p>
<p>Date should be specified in the standard [RFC850].</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">HTTP-EQUIV</span><span style="color: #66cc66;">=</span>”Expires” <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span>”Wed, <span style="color: #cc66cc;">26</span> Feb <span style="color: #cc66cc;">1999</span> 08:<span style="color: #cc66cc;">21</span>:<span style="color: #cc66cc;">57</span> GMT”&gt;</span></pre></div></div>

</dd>
<dd> <strong>PICS-Label</strong></p>
<p>PICS-Label META tag - (Platform-Independent Content rating Scheme Label)) determines the level of site accessibility (sex, violence), but it can be used for other purposes.</p>
<p><strong>Pragma</strong></p>
<p>Pragma - is the caching control. A value of "no-cache" caching is not recommended. This META tag is designed for the documents received as a result of the script work.</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">HTTP-EQUIV</span><span style="color: #66cc66;">=</span>”Pragma” <span style="color: #000066;">content</span> <span style="color: #66cc66;">=</span>”no-cache”&gt;</span></pre></div></div>

</dd>
<dd> <strong>Refresh</strong></p>
<p>Refresh META Tag - the definition of delay time in seconds, after which the browser automatically updates the document. Additional feature - the automatic downloading of another document.</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">HTTP-EQUIV</span><span style="color: #66cc66;">=</span>”Refresh” <span style="color: #000066;">content</span> <span style="color: #66cc66;">=</span>”<span style="color: #cc66cc;">4</span>; URL<span style="color: #66cc66;">=</span>http:<span style="color: #66cc66;">//</span>www.<span style="color: #000066;">name</span>.com<span style="color: #66cc66;">/</span>”&gt;</span></pre></div></div>

</dd>
<dd> If you just need to update the document, the URL assignment is not required.</p>
<p><strong>Set-Cookie</strong></p>
<p>Set-Cookie - Install a browser cookie.
</dd>
<dd> Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">HTTP-EQUIV</span><span style="color: #66cc66;">=</span>”Set-Cookie” <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span>”<span style="color: #000066;">NAME</span><span style="color: #66cc66;">=</span><span style="color: #000066;">value</span>; EXPIRES<span style="color: #66cc66;">=</span> date; DOMAIN<span style="color: #66cc66;">=</span>domain_name; PATH<span style="color: #66cc66;">=</span>path; SECURE”&gt;</span></pre></div></div>

</dd>
<dd> Attributes EXPIRES, DOMAIN, PATH and SECURE can be deleted if not needed.</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">HTTP-EQUIV</span><span style="color: #66cc66;">=</span>”Set-Cookie” <span style="color: #000066;">content</span><span style="color: #66cc66;">=</span>”<span style="color: #000066;">NAME</span><span style="color: #66cc66;">=</span><span style="color: #000066;">value</span>;”&gt;</span> NAME</pre></div></div>

</dd>
<dd> The name cookie, can not contain the line feed characters, spaces, a semicolon (;) and Tab.</p>
<p><span style="text-decoration: underline;">EXPIRES</span></p>
<p>Storage Time for cookie. After this date (in the format "Wdy, DD-Mon-YYYY HH: MM: SS GMT") the time of cookie storage expires.<br />
If this attribute is not specified, the cookie is stored during one session, before closing the browser.</p>
<p><span style="text-decoration: underline;">DOMAIN</span></p>
<p>The domain for which the cookie is set. For domains COM, EDU, NET, ORG, GOV, MIL, INT the value can be abbreviated as "MY.COM", it is identical to "WWW.MY.COM". For all the rest (including RU) value must be set fully "WWW.MY.RU".<br />
If this attribute is omitted, the default domain name server, which was billed meaning cookie.</p>
<p><span style="text-decoration: underline;">PATH</span></p>
<p>Installs a subset of documents to which the cookie. When the value "/ doc" the cookie will be distributed to all files and directories in that directory starting at the "doc" (/ doc /, / document /, / doc2 /, docs.html, doc-test.htm).<br />
If this attribute is omitted, the value of cookie covers only the documents of the folder that contains the current document.</p>
<p><span style="text-decoration: underline;">SECURE</span></p>
<p>Indicates that the information about the cookie should be sent via HTTPS (HTTP with using SSL). Otherwise, the information about the cookie will be sent over HTTP.<br />
Before making a request to the server, the browser checks the cookie. And if the NAME, DOMAIN and PATH attributes match, the browser sends cookie to server.<br />
If a cookie takes the new value, old value is removed.<br />
Browser has a number of restrictions in terms of working with the cookie:<br />
Up to 300 values cookie can be stored at a time.<br />
Cookie can not exceed 4 KB.<br />
There can be not more than 20 cookies from one server(domain).<br />
These restrictions may slightly differ depending on the configuration and the type of browser.<br />
When an excess of the limit (general or by domain) takes place, the oldest record is deleted. Removal takes place regardless of the attribute EXPIRES value.<br />
When exceeding 4 Kbytes, cookie is truncated.</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">HTTP-EQUIV</span> <span style="color: #66cc66;">=</span> “Set-Cookie” <span style="color: #000066;">content</span> <span style="color: #66cc66;">=</span> “<span style="color: #000066;">NAME</span> <span style="color: #66cc66;">=</span> cookexample; EXPIRES <span style="color: #66cc66;">=</span> Monday, <span style="color: #cc66cc;">22</span>-FEB-02 <span style="color: #cc66cc;">21</span>:<span style="color: #cc66cc;">11</span>:<span style="color: #cc66cc;">51</span> GMT; DOMAIN <span style="color: #66cc66;">=</span> WWW.MY.RU; PATH <span style="color: #66cc66;">=</span> <span style="color: #66cc66;">/</span>; SECURE” &gt;</span></pre></div></div>

</dd>
<dd> <strong>Window-target</strong></p>
<p>META Tag Window-target - specifies a window of current page. This will be used to stop the emergence of new browser windows in the application for frame structures. It is fair for many (but not all) browsers.</p>
<p>Example:</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">META</span> <span style="color: #000066;">HTTP-EQUIV</span><span style="color: #66cc66;">=</span>”Window-<span style="color: #000066;">target</span>” <span style="color: #000066;">content</span> <span style="color: #66cc66;">=</span>”_top”&gt;</span></pre></div></div>

</dd>
<dd><a class="menu_black" title="HTML Style" href="html-style.html">HTML Style</a></dd>
<dd><a class="menu_black" title="Tables in HTML" href="tables-in-html.html">Tables in HTML</a></dd>
<dd><a class="menu_black" title="Color Codes in HTML" href="color-codes-in-html.html">Color Codes in HTML</a></dd>
<dd><a class="menu_black" title="Html Forms" href="html-forms.html">HTML Forms</a></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/meta-tag-in-html.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tables in HTML</title>
		<link>http://phpforms.net/tutorial/html-basics/tables-in-html.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/tables-in-html.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 19:32:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[Tables in HTML]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=32</guid>
		<description><![CDATA[
In order to  arrange the table first of all you need to assign a number of rows and columns.  Usually its difficult to understand that the &#60;strong&#62;html table&#60;/strong&#62;  markup supposes table description line by line. So, in order:
&#60;table&#62; &#60;/table&#62; - opening and closing tags table.
&#60;tr&#62; &#60;/tr&#62; - opening and closing tags for [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>In order to  arrange the table first of all you need to assign a number of rows and columns.  Usually its difficult to understand that the &lt;strong&gt;html table&lt;/strong&gt;  markup supposes table description line by line. So, in order:</p>
<p>&lt;table&gt; &lt;/table&gt; - opening and closing tags table.<br />
&lt;tr&gt; &lt;/tr&gt; - opening and closing tags for table row description.<br />
&lt;td&gt; &lt;/td&gt; - opening and closing tags for table cell description.</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">&nbsp;
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span> 1 cell<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span> 2 cell<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">table</span>&gt;</span></pre></div></div>

<p>Table would look like this:</p>
<table>
<tbody>
<tr>
<td>1 cell</td>
<td>2 cell</td>
</tr>
</tbody>
</table>
<p>Please note, &lt;table&gt; - opening table tag, &lt;tr&gt; - opening line tag,  &lt;td&gt; &lt;/td&gt; &lt;td&gt; &lt;/td&gt; - two opening and closing cell  tags, &lt; /tr&gt; - closing line tag, &lt;/table&gt; - closing table tag.</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">&nbsp;
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 2<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 3<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 4<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">table</span>&gt;</span></pre></div></div>

<p>Table would look like this:</p>
<table>
<tbody>
<tr>
<td>cell 1</td>
<td>cell 2</td>
</tr>
<tr>
<td>cell 3</td>
<td>cell 4</td>
</tr>
</tbody>
</table>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">&nbsp;
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">table</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 2<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 3<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 4<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 5<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 6<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 7<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 8<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 9<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">table</span>&gt;</span></pre></div></div>

<table>
<tbody>
<tr>
<td>cell 1</td>
<td>cell 2</td>
<td>cell 3</td>
</tr>
<tr>
<td>cell 4</td>
<td>cell 5</td>
<td>cell 6</td>
</tr>
<tr>
<td>cell 7</td>
<td>cell 8</td>
<td>cell 9</td>
</tr>
</tbody>
</table>
<p>Note that there is no matter how many spaces or line feeds you marked,  all  these characters are ignored in HTML text.</p>
<h2>How to merge cells?</h2>
<p>Add to tags structures colspan and  rowspan.<br />
<strong>colspan</strong> - merges cells in table lines;<br />
<strong>rowspan</strong> - merges cells in table columns.</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">&nbsp;
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">table</span> <span style="color: #000066;">border</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;1&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;</span>cell 1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 3<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 4<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">rowspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span>&gt;</span>cell 5<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 6<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 7<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">table</span>&gt;</span></pre></div></div>

<table border="1">
<tbody>
<tr>
<td colspan="2">cell 1</td>
<td>cell 1</td>
</tr>
<tr>
<td>cell 3</td>
<td>cell 4</td>
<td rowspan="2">cell 5</td>
</tr>
<tr>
<td>cell 6</td>
<td>cell 7</td>
</tr>
</tbody>
</table>
<p>Inputting text into the cells.<br />
<strong>align</strong> - horizontal alignment;<br />
<strong>valign</strong> - vertical alignment.</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">&nbsp;
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">table</span> <span style="color: #000066;">border</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;1&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span> <span style="color: #000066;">align</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;center&quot;</span>&gt;</span>cell 1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 2<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 3<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 4<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">rowspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span> <span style="color: #000066;">valign</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;top&quot;</span>&gt;</span> cell 5<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 6<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 7<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">table</span>&gt;</span></pre></div></div>

<table border="1">
<tbody>
<tr>
<td colspan="2" align="center">cell 1</td>
<td>cell 2</td>
</tr>
<tr>
<td>cell 3</td>
<td>cell 4</td>
<td rowspan="2" valign="top">cell 5</td>
</tr>
<tr>
<td>cell 6</td>
<td>cell 7</td>
</tr>
</tbody>
</table>
<p>The width of table borders.</p>
<p>border  the value of this parameter will indicate the border width.</p>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">&nbsp;
&nbsp;
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">table</span> <span style="color: #000066;">border</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;5&quot;</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">colspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span> <span style="color: #000066;">align</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;center&quot;</span>&gt;</span>cell 1<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 2<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 3<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 4<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span> <span style="color: #000066;">rowspan</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;2&quot;</span> <span style="color: #000066;">valign</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;top&quot;</span>&gt;</span> cell 5<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 6<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">td</span>&gt;</span>cell 7<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">td</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tr</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">tbody</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">table</span>&gt;</span></pre></div></div>

<table border="5">
<tbody>
<tr>
<td colspan="2" align="center">cell 1</td>
<td>cell 2</td>
</tr>
<tr>
<td>cell 3</td>
<td>cell 4</td>
<td rowspan="2" valign="top">cell 5</td>
</tr>
<tr>
<td>cell 6</td>
<td>cell 7</td>
</tr>
</tbody>
</table>
<p>If the border =  "0"</p>
<p>Table would look like this:</p>
<table border="0">
<tbody>
<tr>
<td colspan="2" align="center">cell 1</td>
<td>cell 2</td>
</tr>
<tr>
<td>cell 3</td>
<td>cell 4</td>
<td rowspan="2" valign="top">cell 5</td>
</tr>
<tr>
<td>cell 6</td>
<td>cell 7</td>
</tr>
</tbody>
</table>
</dd>
<dd> <a class="menu_black" title="Html BODY" href="html-body.html">Html BODY</a> </dd>
<dd> <a class="menu_black" title="HTML Style" href="html-style.html">HTML Style</a> </dd>
<dd> <a class="menu_black" title="META tag in HTML" href="meta-tag-in-html.html">META tag in HTML</a> </dd>
<dd> <a class="menu_black" title="Color Codes in HTML" href="color-codes-in-html.html">Color Codes in HTML</a> </dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/tables-in-html.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Body</title>
		<link>http://phpforms.net/tutorial/html-basics/html-body.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/html-body.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 19:29:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[HTML BODY]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=27</guid>
		<description><![CDATA[
BODY  indicates the beginning and end of the HTML-document body. Between the start  and end tags the text of the document, images and tables are contained. In  short, all the HTML-elements responsible for displaying the document, its  management and hypertext links. BODY element must occur in the document not  more [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>BODY  indicates the beginning and end of the HTML-document body. Between the start  and end tags the text of the document, images and tables are contained. In  short, all the HTML-elements responsible for displaying the document, its  management and hypertext links. BODY element must occur in the document not  more than once.</p>
<p><span style="text-decoration: underline;"><span style="color: #000000;">Attributes<strong>: </strong></span></span></p>
<p><strong>MARGINHEIGHT</strong> - determines the width (in pixels) of upper and lower margins of  the document. Only works in Netscape browsers.</p>
<p><strong>TOPMARGIN</strong><span style="text-decoration: underline;"> </span>- determines the width (in pixels) of upper and lower margins of the  document. Only works in Explorer browsers.</p>
<p><strong>MARGINWIDTH</strong> - determines the width (in pixels) of left and right margins of the  document. Only works in Netscape browsers.</p>
<p><strong>LEFTMARGIN</strong><span style="text-decoration: underline;"> </span>- determines the width (in pixels) of left and right margins of the  document. Only works in Explorer browsers.</p>
<p><strong>BACKGROUND</strong><span style="text-decoration: underline;"> </span>- sets the image for "filling" the background. The value  is assigned in the form of a file name with a picture in GIF or JPG format.</p>
<p><strong>BGCOLOR</strong> - specifies the background color of the document.</p>
<p><strong>TEXT</strong> - determines the text color in the document.</p>
<p><strong>LINK</strong><strong> </strong>- determines the color of hyperlinks in the document.</p>
<p><strong>ALINK</strong> - determines the color of the highlights when you click hyperlinks.</p>
<p><strong>VLINK</strong> - determines the color of hyperlinks to documents that you have already  reviewed.</p>
<p>The values of BGCOLOR, TEXT, LINK , ALINK and VLINK attributes are specified by  RGB-value in hexademical system. Previously, we were mentioned how to indicate  colors in html.</p>
<p><span style="text-decoration: underline;">Example</span>:</p>
</dd>
<dd>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;">...
The text of the document.
...</pre></div></div>

</dd>
<dd>Do not use MARGINWIDTH, MARGINHEIGHT, TOPMARGIN, LEFTMARGIN as they are made  only for certain browsers. If the user has another browser, and we are aimed at  creating a document that will be readable in all browsers. In principle we  advise to leave &lt;BODY&gt; tag without any parameters, because we will put  them in the cascade style sheet.</dd>
<dd><a class="menu_black" title="HTML Introduction " href="html-introduction.html">HTML Introduction</a></dd>
<dd><a class="menu_black" title="HTML concept" href="html-concept.html">HTML concept</a></dd>
<dd><a class="menu_black" title="HTML Style" href="html-style.html">HTML Style</a></dd>
<dd><a class="menu_black" title="Tables in HTML" href="tables-in-html.html">Tables in HTML</a></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/html-body.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>HTML Concept</title>
		<link>http://phpforms.net/tutorial/html-basics/html-concept.html</link>
		<comments>http://phpforms.net/tutorial/html-basics/html-concept.html#comments</comments>
		<pubDate>Sun, 17 Jan 2010 19:20:25 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[HTML Basics]]></category>
		<category><![CDATA[HTML Concept]]></category>

		<guid isPermaLink="false">http://phpforms.net/tutorial/?page_id=25</guid>
		<description><![CDATA[
HTML concept - it's my vision of how the site should look. That is, if someone doesn’t agree with my opinion, it could be. Nevertheless, let me tell what can be and what can not be on the website. That is, let’s try to formulate rules of good manners when creating the site:


&#60;img src=&#34;ris.jpg&#34; alt=&#34;”HTML&#34; [...]]]></description>
			<content:encoded><![CDATA[<dl class="spiski">
<dd>HTML concept - it's my vision of how the site should look. That is, if someone doesn’t agree with my opinion, it could be. Nevertheless, let me tell what can be and what can not be on the website. That is, let’s try to formulate rules of good manners when creating the site:</dd>
<dd>

<div class="wp_syntax"><div class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">img</span> <span style="color: #000066;">src</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;ris.jpg&quot;</span> <span style="color: #000066;">alt</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;”HTML&quot;</span> <span style="color: #000066;">width</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;100&quot;</span> <span style="color: #000066;">height</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;140&quot;</span> <span style="color: #66cc66;">/</span>&gt;</span></pre></div></div>

</dd>
<dd>Lets analyze parameter value of &lt;img&gt; tag. As you can see, this is a single tag. "Src" parameter specifies the path to the image (absolute or relative). The rules that specifies a relative path is the same as for the links. The width and height parameters define the width and height of the <strong>image in pixels</strong> in the HTML document. "Alt" parameter specifies the alternative text - the text that appears in your browser when  image downloading is disabled.</dd>
<dd>
<ul>
<li>If you don’t know what the Frame is, never wondered what it is. If you know what is that, never use them in practice. If you are using frames on your site, then keep in mind that many browsers can not read your site, plus you really complicate the work of search engines and other specialized Internet programs. Conclusion: use the tables for text formatting, tables easily replace frames and different robots and special programs easily operate with them.</li>
<li>Never use structures that in different versions of browsers look differently. It is desirable to test the site on an old browser Netscape 6. There all the flaws will be immediately visible. Conclusion: Test your site in different versions of browsers.</li>
<li>Do not use more than three colors on your site, otherwise it will be variegated that is very bad.</li>
<li>Save the style of all the pages in the same spirit, then the site will looks complete, that adorns it greatly.</li>
<li>Never use a lot of graphics. Page with big memory size likely will not be viewed by users, as it will be a rather long boot, and people simply will not wait until the end. Many users have the most usual modem entry in the Internet. Conclusion: as little of graphics as possible.</li>
<li>The same can be said about JavaScript. If possible, do not use it. Pages load a long time, plus clever users in their browser disable script loading option. Conclusion: as little JavaScript as possible.</li>
<li>When using images, always assign their size in HTML text (border = "0" height = "38" width = "160"), because 20% of users turn off graphics that resizes images and the site will look for another. In addition, always an alternative text in image tags - a description of image. Conclusion: always set the images size.</li>
<li>Use PHP for creating more dynamic site, because the sites where nothing changes have no interest for visitors.</li>
</ul>
</dd>
<dd>From all the above we can make a conclusion. The site should be fast to the prejudice of graphics, but keeping single textual information is not rational. We must seek a middle ground between the graphics and downloading rate of the site.</dd>
<dd><a class="menu_black" title="HTML Introduction " href="html-introduction.html">HTML Introduction</a></dd>
<dd><a class="menu_black" title="Html BODY" href="html-body.html">Html BODY</a></dd>
<dd><a class="menu_black" title="HTML Style" href="html-style.html">HTML Style</a></dd>
<dd><a class="menu_black" title="Tables in HTML" href="tables-in-html.html">Tables in HTML</a></dd>
</dl>
]]></content:encoded>
			<wfw:commentRss>http://phpforms.net/tutorial/html-basics/html-concept.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

