<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.0.4" -->
<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/"
	>

<channel>
	<title>Simply Program</title>
	<link>http://simplyprogram.com</link>
	<description>Simply programming - It's a life style</description>
	<pubDate>Mon, 04 May 2009 14:13:13 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.0.4</generator>
	<language>en</language>
			<item>
		<title>Locking and UnLocking a file with php</title>
		<link>http://simplyprogram.com/locking-and-unlocking-a-file-with-php/</link>
		<comments>http://simplyprogram.com/locking-and-unlocking-a-file-with-php/#comments</comments>
		<pubDate>Mon, 04 May 2009 14:13:13 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
	<category>PHP</category>
		<guid isPermaLink="false">http://simplyprogram.com/locking-and-unlocking-a-file-with-php/</guid>
		<description><![CDATA[<style>.newl {display:none}</style><div class=newl></div>Read&#8230; and study it!
http://us2.php.net/manual/en/function.flock.php

]]></description>
			<content:encoded><![CDATA[<p>Read&#8230; and study it!</p>
<p>http://us2.php.net/manual/en/function.flock.php
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/locking-and-unlocking-a-file-with-php/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Extracting a URL from an excel cell</title>
		<link>http://simplyprogram.com/extracting-a-url-from-an-excel-cell/</link>
		<comments>http://simplyprogram.com/extracting-a-url-from-an-excel-cell/#comments</comments>
		<pubDate>Sat, 02 May 2009 13:59:53 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
		<guid isPermaLink="false">http://simplyprogram.com/extracting-a-url-from-an-excel-cell/</guid>
		<description><![CDATA[This macro will allow you to extract a url/mailto from excel and place it into the next cell.
To see more options: Click here
PLAIN TEXT
CODE:




Sub ExtractHL&#40;&#41;


Dim HL As Hyperlink


For Each HL In ActiveSheet.Hyperlinks


HL.Range.Offset&#40;0, 1&#41;.Value = HL.Address


Next


End Sub 







]]></description>
			<content:encoded><![CDATA[<p>This macro will allow you to extract a url/mailto from excel and place it into the next cell.<br />
To see more options: <a href="http://excel.tips.net/Pages/T003281_Extracting_URLs_from_Hyperlinks.html">Click here</a></p>
<div class="igBar"><span id="lcode-2"><a href="#" onclick="javascript:showPlainTxt('code-2'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span><br />
<div id="code-2">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Sub ExtractHL<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Dim HL As Hyperlink</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">For Each HL In ActiveSheet.<span style="">Hyperlinks</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">HL.<span style="">Range</span>.<span style="">Offset</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#800000;color:#800000;">0</span>, <span style="color:#800000;color:#800000;">1</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="">Value</span> = HL.<span style="">Address</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Next</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">End Sub </div>
</li>
</ol>
</div>
</div>
</div>
<p>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/extracting-a-url-from-an-excel-cell/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Date Dropdown</title>
		<link>http://simplyprogram.com/date-dropdown/</link>
		<comments>http://simplyprogram.com/date-dropdown/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 15:12:51 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
		<guid isPermaLink="false">http://simplyprogram.com/date-dropdown/</guid>
		<description><![CDATA[PLAIN TEXT
CODE:




&#60;select name="date"&#62;


&#60;option value='01'&#62;01&#60;/option&#62;


&#60;option value='02'&#62;02&#60;/option&#62;


&#60;option value='03'&#62;03&#60;/option&#62;


&#60;option value='04'&#62;04&#60;/option&#62;


&#60;option value='05'&#62;05&#60;/option&#62;


&#60;option value='06'&#62;06&#60;/option&#62;


&#60;option value='07'&#62;07&#60;/option&#62;


&#60;option value='08'&#62;08&#60;/option&#62;


&#160;


&#60;option value='09'&#62;09&#60;/option&#62;


&#60;option value='10'&#62;10&#60;/option&#62;


&#60;option value='11'&#62;11&#60;/option&#62;


&#60;option value='12'&#62;12&#60;/option&#62;


&#60;option value='13'&#62;13&#60;/option&#62;


&#60;option value='14'&#62;14&#60;/option&#62;


&#60;option value='15'&#62;15&#60;/option&#62;


&#60;option value='16'&#62;16&#60;/option&#62;


&#60;option value='17'&#62;17&#60;/option&#62;


&#160;


&#60;option value='18'&#62;18&#60;/option&#62;


&#60;option value='19'&#62;19&#60;/option&#62;


&#60;option value='20'&#62;20&#60;/option&#62;


&#60;option value='21'&#62;21&#60;/option&#62;


&#60;option value='22'&#62;22&#60;/option&#62;


&#60;option value='23'&#62;23&#60;/option&#62;


&#60;option value='24'&#62;24&#60;/option&#62;


&#60;option value='25'&#62;25&#60;/option&#62;


&#60;option value='26'&#62;26&#60;/option&#62;


&#160;


&#60;option value='27'&#62;27&#60;/option&#62;


&#60;option value='28'&#62;28&#60;/option&#62;


&#60;option value='29'&#62;29&#60;/option&#62;


&#60;option value='30'&#62;30&#60;/option&#62;


&#60;option value='31'&#62;31&#60;/option&#62;


&#60;/select&#62; 







]]></description>
			<content:encoded><![CDATA[<div class="igBar"><span id="lcode-4"><a href="#" onclick="javascript:showPlainTxt('code-4'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span><br />
<div id="code-4">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;select name=<span style="color:#CC0000;">"date"</span>&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'01'</span>&gt;<span style="color:#800000;color:#800000;">01</span>&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'02'</span>&gt;<span style="color:#800000;color:#800000;">02</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'03'</span>&gt;<span style="color:#800000;color:#800000;">03</span>&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'04'</span>&gt;<span style="color:#800000;color:#800000;">04</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'05'</span>&gt;<span style="color:#800000;color:#800000;">05</span>&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'06'</span>&gt;<span style="color:#800000;color:#800000;">06</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'07'</span>&gt;<span style="color:#800000;color:#800000;">07</span>&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'08'</span>&gt;<span style="color:#800000;color:#800000;">08</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'09'</span>&gt;<span style="color:#800000;color:#800000;">09</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'10'</span>&gt;<span style="color:#800000;color:#800000;">10</span>&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'11'</span>&gt;<span style="color:#800000;color:#800000;">11</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'12'</span>&gt;<span style="color:#800000;color:#800000;">12</span>&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'13'</span>&gt;<span style="color:#800000;color:#800000;">13</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'14'</span>&gt;<span style="color:#800000;color:#800000;">14</span>&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'15'</span>&gt;<span style="color:#800000;color:#800000;">15</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'16'</span>&gt;<span style="color:#800000;color:#800000;">16</span>&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'17'</span>&gt;<span style="color:#800000;color:#800000;">17</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'18'</span>&gt;<span style="color:#800000;color:#800000;">18</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'19'</span>&gt;<span style="color:#800000;color:#800000;">19</span>&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'20'</span>&gt;<span style="color:#800000;color:#800000;">20</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'21'</span>&gt;<span style="color:#800000;color:#800000;">21</span>&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'22'</span>&gt;<span style="color:#800000;color:#800000;">22</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'23'</span>&gt;<span style="color:#800000;color:#800000;">23</span>&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'24'</span>&gt;<span style="color:#800000;color:#800000;">24</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'25'</span>&gt;<span style="color:#800000;color:#800000;">25</span>&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'26'</span>&gt;<span style="color:#800000;color:#800000;">26</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'27'</span>&gt;<span style="color:#800000;color:#800000;">27</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'28'</span>&gt;<span style="color:#800000;color:#800000;">28</span>&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'29'</span>&gt;<span style="color:#800000;color:#800000;">29</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'30'</span>&gt;<span style="color:#800000;color:#800000;">30</span>&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">'31'</span>&gt;<span style="color:#800000;color:#800000;">31</span>&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/select&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/date-dropdown/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Month Dropdown</title>
		<link>http://simplyprogram.com/month-dropdown/</link>
		<comments>http://simplyprogram.com/month-dropdown/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 15:11:02 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
		<guid isPermaLink="false">http://simplyprogram.com/month-dropdown/</guid>
		<description><![CDATA[Same issue with states I have with dates lol
PLAIN TEXT
CODE:




&#60;select name="month"&#62;


&#60;option value = "1"&#62;January&#60;/option&#62;


&#60;option value = "2"&#62;February&#60;/option&#62;


&#60;option value = "3"&#62;March&#60;/option&#62;


&#60;option value = "4"&#62;April&#60;/option&#62;


&#60;option value = "5"&#62;May&#60;/option&#62;


&#60;option value = "6"&#62;June&#60;/option&#62;


&#60;option value = "7"&#62;July&#60;/option&#62;


&#60;option value = "8"&#62;August&#60;/option&#62;


&#60;option value = "9"&#62;September&#60;/option&#62;


&#60;option value = "10"&#62;October&#60;/option&#62;


&#60;option value = "11"&#62;November&#60;/option&#62;


&#60;option value = "12"&#62;December&#60;/option&#62;


&#60;/select&#62; 







]]></description>
			<content:encoded><![CDATA[<p>Same issue with states I have with dates lol</p>
<div class="igBar"><span id="lcode-6"><a href="#" onclick="javascript:showPlainTxt('code-6'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span><br />
<div id="code-6">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;select name=<span style="color:#CC0000;">"month"</span>&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value = <span style="color:#CC0000;">"1"</span>&gt;January&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value = <span style="color:#CC0000;">"2"</span>&gt;February&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value = <span style="color:#CC0000;">"3"</span>&gt;March&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value = <span style="color:#CC0000;">"4"</span>&gt;April&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value = <span style="color:#CC0000;">"5"</span>&gt;May&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value = <span style="color:#CC0000;">"6"</span>&gt;June&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value = <span style="color:#CC0000;">"7"</span>&gt;July&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value = <span style="color:#CC0000;">"8"</span>&gt;August&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value = <span style="color:#CC0000;">"9"</span>&gt;September&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value = <span style="color:#CC0000;">"10"</span>&gt;October&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value = <span style="color:#CC0000;">"11"</span>&gt;November&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value = <span style="color:#CC0000;">"12"</span>&gt;December&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/select&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/month-dropdown/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>50 U.S States Dropdown HTML</title>
		<link>http://simplyprogram.com/50-us-states-dropdown-html/</link>
		<comments>http://simplyprogram.com/50-us-states-dropdown-html/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 15:09:06 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
		<guid isPermaLink="false">http://simplyprogram.com/50-us-states-dropdown-html/</guid>
		<description><![CDATA[This always drives me crazy, finding a quick dropdown for the 50 us states. So here you go!
PLAIN TEXT
CODE:




&#60;select name="sale_state"&#62;


&#60;option value="AL"&#62;Alabama&#60;/option&#62;


&#60;option value="AK"&#62;Alaska&#60;/option&#62;


&#60;option value="AZ"&#62;Arizona&#60;/option&#62;


&#60;option value="AR"&#62;Arkansas&#60;/option&#62;


&#60;option value="CA"&#62;California&#60;/option&#62;


&#60;option value="CO"&#62;Colorado&#60;/option&#62;


&#60;option value="CT"&#62;Connecticut&#60;/option&#62;


&#60;option value="DE"&#62;Delaware&#60;/option&#62;


&#60;option value="DC"&#62;District of Columbia&#60;/option&#62;


&#60;option value="FL"&#62;Florida&#60;/option&#62;


&#60;option value="GA"&#62;Georgia&#60;/option&#62;


&#60;option value="HI"&#62;Hawaii&#60;/option&#62;


&#60;option value="ID"&#62;Idaho&#60;/option&#62;


&#60;option value="IL"&#62;Illinois&#60;/option&#62;


&#60;option value="IN"&#62;Indiana&#60;/option&#62;


&#60;option value="IA"&#62;Iowa&#60;/option&#62;


&#60;option value="KS"&#62;Kansas&#60;/option&#62;


&#60;option value="KY"&#62;Kentucky&#60;/option&#62;


&#60;option value="LA"&#62;Louisiana&#60;/option&#62;


&#60;option value="ME"&#62;Maine&#60;/option&#62;


&#60;option value="MD"&#62;Maryland&#60;/option&#62;


&#60;option value="MA"&#62;Massachusetts&#60;/option&#62;


&#60;option value="MI"&#62;Michigan&#60;/option&#62;


&#60;option value="MN"&#62;Minnesota&#60;/option&#62;


&#60;option value="MS"&#62;Mississippi&#60;/option&#62;


&#60;option value="MO"&#62;Missouri&#60;/option&#62;


&#60;option value="MT"&#62;Montana&#60;/option&#62;


&#60;option value="NE"&#62;Nebraska&#60;/option&#62;


&#60;option value="NV"&#62;Nevada&#60;/option&#62;


&#60;option value="NH"&#62;New Hampshire&#60;/option&#62;


&#60;option value="NJ"&#62;New Jersey&#60;/option&#62;


&#60;option [...]]]></description>
			<content:encoded><![CDATA[<p>This always drives me crazy, finding a quick dropdown for the 50 us states. So here you go!</p>
<div class="igBar"><span id="lcode-8"><a href="#" onclick="javascript:showPlainTxt('code-8'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span><br />
<div id="code-8">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;select name=<span style="color:#CC0000;">"sale_state"</span>&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"AL"</span>&gt;Alabama&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"AK"</span>&gt;Alaska&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"AZ"</span>&gt;Arizona&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"AR"</span>&gt;Arkansas&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"CA"</span>&gt;California&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"CO"</span>&gt;Colorado&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"CT"</span>&gt;Connecticut&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"DE"</span>&gt;Delaware&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"DC"</span>&gt;District of Columbia&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"FL"</span>&gt;Florida&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"GA"</span>&gt;Georgia&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"HI"</span>&gt;Hawaii&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"ID"</span>&gt;Idaho&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"IL"</span>&gt;Illinois&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"IN"</span>&gt;Indiana&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"IA"</span>&gt;Iowa&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"KS"</span>&gt;Kansas&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"KY"</span>&gt;Kentucky&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"LA"</span>&gt;Louisiana&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"ME"</span>&gt;Maine&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"MD"</span>&gt;Maryland&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"MA"</span>&gt;Massachusetts&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"MI"</span>&gt;Michigan&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"MN"</span>&gt;Minnesota&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"MS"</span>&gt;Mississippi&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"MO"</span>&gt;Missouri&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"MT"</span>&gt;Montana&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"NE"</span>&gt;Nebraska&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"NV"</span>&gt;Nevada&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"NH"</span>&gt;New Hampshire&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"NJ"</span>&gt;New Jersey&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"NM"</span>&gt;New Mexico&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"NY"</span>&gt;New York&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"NC"</span>&gt;North Carolina&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"ND"</span>&gt;North Dakota&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"OH"</span>&gt;Ohio&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"OK"</span>&gt;Oklahoma&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"OR"</span>&gt;Oregon&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"PA"</span>&gt;Pennsylvania&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"RI"</span>&gt;Rhode Island&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"SC"</span>&gt;South Carolina&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"SD"</span>&gt;South Dakota&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"TN"</span>&gt;Tennessee&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"TX"</span>&gt;Texas&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"UT"</span>&gt;Utah&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"VT"</span>&gt;Vermont&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"VA"</span>&gt;Virginia&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"WA"</span>&gt;Washington&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"WV"</span>&gt;West Virginia&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"WI"</span>&gt;Wisconsin&lt;/option&gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;option value=<span style="color:#CC0000;">"WY"</span>&gt;Wyoming&lt;/option&gt;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&lt;/select&gt; </div>
</li>
</ol>
</div>
</div>
</div>
<p>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/50-us-states-dropdown-html/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Remove an iframe border</title>
		<link>http://simplyprogram.com/remove-an-iframe-border/</link>
		<comments>http://simplyprogram.com/remove-an-iframe-border/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 13:38:19 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
		<guid isPermaLink="false">http://simplyprogram.com/remove-an-iframe-border/</guid>
		<description><![CDATA[I'm not sure why, but I always forget how to remove a border on an iframe... funny.
PLAIN TEXT
CODE:




frameborder="0" 







]]></description>
			<content:encoded><![CDATA[<p>I'm not sure why, but I always forget how to remove a border on an iframe... funny.</p>
<div class="igBar"><span id="lcode-10"><a href="#" onclick="javascript:showPlainTxt('code-10'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span><br />
<div id="code-10">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">frameborder=<span style="color:#CC0000;">"0"</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/remove-an-iframe-border/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Limit the number of rows in a textarea</title>
		<link>http://simplyprogram.com/limit-the-number-of-rows-in-a-textaera/</link>
		<comments>http://simplyprogram.com/limit-the-number-of-rows-in-a-textaera/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 15:30:42 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
	<category>Javascript</category>
		<guid isPermaLink="false">http://simplyprogram.com/limit-the-number-of-rows-in-a-textaera/</guid>
		<description><![CDATA[Fantastic solution was found here:
http://www.jsnippet.com/?p=103

]]></description>
			<content:encoded><![CDATA[<p>Fantastic solution was found here:<br />
<a href="http://www.jsnippet.com/?p=103">http://www.jsnippet.com/?p=103</a>
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/limit-the-number-of-rows-in-a-textaera/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Check all checkboxes in a form</title>
		<link>http://simplyprogram.com/check-all-checkboxes-in-a-form/</link>
		<comments>http://simplyprogram.com/check-all-checkboxes-in-a-form/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 18:49:47 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
	<category>Javascript</category>
		<guid isPermaLink="false">http://simplyprogram.com/check-all-checkboxes-in-a-form/</guid>
		<description><![CDATA[I always run into this little problem - how to check all and uncheck all checkboxes no a single page. Heres a nice easy solution.
PLAIN TEXT
CODE:




function checkAll&#40;&#41;


&#123;


if&#40;document.getElementById&#40;'checkallbox'&#41;.checked == true&#41; // the element that you will check to check all boxes.


&#123;


var checks = document.getElementsByName&#40;'CHECKBOXNAME'&#41;;


for&#40;var i=0;i&#60;checks.length;i++&#41;


&#123;


checks&#91;i&#93;.checked = true;


&#125;


&#125;


else


&#123;


var checks = document.getElementsByName&#40;'CHECKBOXNAME'&#41;;


for&#40;var i=0;i&#60;checks.length;i++&#41;


&#123;


checks&#91;i&#93;.checked = false;


&#125;


&#125;


&#125; 






Enjoy!

]]></description>
			<content:encoded><![CDATA[<p>I always run into this little problem - how to check all and uncheck all checkboxes no a single page. Heres a nice easy solution.</p>
<div class="igBar"><span id="lcode-12"><a href="#" onclick="javascript:showPlainTxt('code-12'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">CODE:</span><br />
<div id="code-12">
<div class="code">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">function checkAll<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">if<span style="color:#006600; font-weight:bold;">&#40;</span>document.<span style="">getElementById</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0000;">'checkallbox'</span><span style="color:#006600; font-weight:bold;">&#41;</span>.<span style="">checked</span> == true<span style="color:#006600; font-weight:bold;">&#41;</span> <span style="color:#FF9933; font-style:italic;">// the element that you will check to check all boxes.</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">var checks = document.<span style="">getElementsByName</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0000;">'CHECKBOXNAME'</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">for<span style="color:#006600; font-weight:bold;">&#40;</span>var i=<span style="color:#800000;color:#800000;">0</span>;i&lt;checks.<span style="">length</span>;i++<span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">checks<span style="color:#006600; font-weight:bold;">&#91;</span>i<span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="">checked</span> = true;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">else</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">var checks = document.<span style="">getElementsByName</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#CC0000;">'CHECKBOXNAME'</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">for<span style="color:#006600; font-weight:bold;">&#40;</span>var i=<span style="color:#800000;color:#800000;">0</span>;i&lt;checks.<span style="">length</span>;i++<span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">checks<span style="color:#006600; font-weight:bold;">&#91;</span>i<span style="color:#006600; font-weight:bold;">&#93;</span>.<span style="">checked</span> = false;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#006600; font-weight:bold;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>Enjoy!
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/check-all-checkboxes-in-a-form/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>How to add a favicon to your website</title>
		<link>http://simplyprogram.com/how-to-add-a-favicon-to-your-website/</link>
		<comments>http://simplyprogram.com/how-to-add-a-favicon-to-your-website/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 15:16:39 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
		<guid isPermaLink="false">http://simplyprogram.com/how-to-add-a-favicon-to-your-website/</guid>
		<description><![CDATA[Its quite simple actually - you create your favicon.ico file (which is normally 16x16) in an graphic editor you choose.
Next upload it to your website. Once uploaded add the below code to the header of your website:
PLAIN TEXT
HTML:




&#60;link rel="SHORTCUT ICON" xhref="favicon.ico"&#62; 






And your done!

]]></description>
			<content:encoded><![CDATA[<p>Its quite simple actually - you create your favicon.ico file (which is normally 16x16) in an graphic editor you choose.</p>
<p>Next upload it to your website. Once uploaded add the below code to the header of your website:</p>
<div class="igBar"><span id="lhtml-14"><a href="#" onclick="javascript:showPlainTxt('html-14'); return false;">PLAIN TEXT</a></span></div>
<div class="syntax_hilite"><span class="langName">HTML:</span><br />
<div id="html-14">
<div class="html">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color: #009900;"><a href="http://december.com/html/4/element/link.html"><span style="color: #000000; font-weight: bold;">&lt;link</span></a> <span style="color: #000066;">rel</span>=<span style="color: #ff0000;">"SHORTCUT ICON"</span> xhref=<span style="color: #ff0000;">"favicon.ico"</span><span style="color: #000000; font-weight: bold;">&gt;</span></a></span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>And your done!
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/how-to-add-a-favicon-to-your-website/feed/</wfw:commentRSS>
		</item>
		<item>
		<title>Preview a site in Plesk</title>
		<link>http://simplyprogram.com/preview-a-site-in-plesk/</link>
		<comments>http://simplyprogram.com/preview-a-site-in-plesk/#comments</comments>
		<pubDate>Thu, 26 Feb 2009 13:51:51 +0000</pubDate>
		<dc:creator>sp</dc:creator>
		
	<category>Programming</category>
		<guid isPermaLink="false">http://simplyprogram.com/preview-a-site-in-plesk/</guid>
		<description><![CDATA[How to preview a site in plesk, well its very simply once you know how.
https://YOUR_IP_ADDRESS_HERE:8443/sitepreview/http/SITE_YOU_WANT_TO_VIEW/
Newer versions of plesk have this feature enabled on your sites control panel, you will see an icon called "Site Preview". However; this is not on older versions. So for example you want to view a site called helloworld.com.
You would do:
https://YOUR_IP_ADDRESS_HERE:8443/sitepreview/http/helloworld.com/
Hope [...]]]></description>
			<content:encoded><![CDATA[<p>How to preview a site in plesk, well its very simply once you know how.</p>
<p><a class="moz-txt-link-freetext" href="https://your_ip_address_here:8443/sitepreview/http/SITE_YOU_WANT_TO_VIEW/">https://YOUR_IP_ADDRESS_HERE:8443/sitepreview/http/SITE_YOU_WANT_TO_VIEW/</a></p>
<p>Newer versions of plesk have this feature enabled on your sites control panel, you will see an icon called "Site Preview". However; this is not on older versions. So for example you want to view a site called helloworld.com.</p>
<p>You would do:<br />
<a class="moz-txt-link-freetext" href="https://your_ip_address_here:8443/sitepreview/http/SITE_YOU_WANT_TO_VIEW/">https://YOUR_IP_ADDRESS_HERE:8443/sitepreview/http/helloworld.com/</a></p>
<p>Hope this helps someone lol
</p>
]]></content:encoded>
			<wfw:commentRSS>http://simplyprogram.com/preview-a-site-in-plesk/feed/</wfw:commentRSS>
		</item>
	</channel>
</rss>
