<?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>Luke Howell.com &#187; Uncategorized</title>
	<atom:link href="http://www.lukehowell.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lukehowell.com</link>
	<description></description>
	<lastBuildDate>Mon, 05 Apr 2010 18:28:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Events Calendar Update</title>
		<link>http://www.lukehowell.com/2010/04/05/events-calendar-update-3/</link>
		<comments>http://www.lukehowell.com/2010/04/05/events-calendar-update-3/#comments</comments>
		<pubDate>Mon, 05 Apr 2010 18:28:01 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lukehowell.com/2010/04/05/events-calendar-update-3/</guid>
		<description><![CDATA[Hello everyone. First off let me apologize for not having any updates or fixes for the events calendar in recent times. I have lost touch with others that have worked on the plugin for reasons that I do not know. I too have had many things that have been taking precedence over working on projects. [...]]]></description>
			<content:encoded><![CDATA[<p>Hello everyone.  First off let me apologize for not having any updates or fixes for the events calendar in recent times.  I have lost touch with others that have worked on the plugin for reasons that I do not know.  I too have had many things that have been taking precedence over working on projects.  I am starting back work today on Events Calendar.  To help with sorting through the bugs and reports that have been made, I need everyone&#8217;s help.  I will be updating the svn trunk for the plugin while working on it.  I would appreciate anyone that wants to play around with it to email me any issue to luke (at) wp-eventscalendar (dot) com.</p>
<p>If is something quick and you have a patch you will be credited with the solution.  Any help is appreciated as I want to get the plugin where it should be and make it useful for everyone that needs it.</p>
<p>SVN Trunk is http://svn.wp-plugins.org/events-calendar/trunk</p>
<p>Feel free to email me with any concerns or questions.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukehowell.com/2010/04/05/events-calendar-update-3/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>PHP Form Select for States and Provinces</title>
		<link>http://www.lukehowell.com/2010/03/23/php-form-select-for-states-and-provinces/</link>
		<comments>http://www.lukehowell.com/2010/03/23/php-form-select-for-states-and-provinces/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 14:52:29 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lukehowell.com/?p=241</guid>
		<description><![CDATA[I put this together and thought I would share it. Uses php to select the current drop down for state. Line 2 is where $state is set. You can set this based on anything you need. [php] Select One value=&#8221;BC&#8221;>British Columbia value=&#8221;NB&#8221;>New Brunswick value=&#8221;NT&#8221;>Northwest Territories value=&#8221;NU&#8221;>Nunavut value=&#8221;PE&#8221;>Prince Edward Island value=&#8221;SK&#8221;>Saskatchewan value=&#8221;AK&#8221;>Alaska value=&#8221;AZ&#8221;>Arizona value=&#8221;CA&#8221;>California value=&#8221;CT&#8221;>Connecticut value=&#8221;DC&#8221;>District [...]]]></description>
			<content:encoded><![CDATA[<p>I put this together and thought I would share it.  Uses php to select the current drop down for state.  Line 2 is where $state is set.  You can set this based on anything you need.</p>
<p>[php]<br />
<?php<br />
$state = '';<br />
?></p>
<select id="state" name="state">
<option value="">Select One</option>
<p><optgroup label="Canadian Provinces"></p>
<option <?php echo $state=='AB' ? 'selected="selected" ' : '';?>value=&#8221;AB&#8221;>Alberta</option>
<option <?php echo $state=='BC' ? 'selected="selected" ' : '';?>value=&#8221;BC&#8221;>British Columbia</option>
<option <?php echo $state=='MB' ? 'selected="selected" ' : '';?>value=&#8221;MB&#8221;>Manitoba</option>
<option <?php echo $state=='NB' ? 'selected="selected" ' : '';?>value=&#8221;NB&#8221;>New Brunswick</option>
<option <?php echo $state=='NF' ? 'selected="selected" ' : '';?>value=&#8221;NF&#8221;>Newfoundland</option>
<option <?php echo $state=='NT' ? 'selected="selected" ' : '';?>value=&#8221;NT&#8221;>Northwest Territories</option>
<option <?php echo $state=='NS' ? 'selected="selected" ' : '';?>value=&#8221;NS&#8221;>Nova Scotia</option>
<option <?php echo $state=='NU' ? 'selected="selected" ' : '';?>value=&#8221;NU&#8221;>Nunavut</option>
<option <?php echo $state=='ON' ? 'selected="selected" ' : '';?>value=&#8221;ON&#8221;>Ontario</option>
<option <?php echo $state=='PE' ? 'selected="selected" ' : '';?>value=&#8221;PE&#8221;>Prince Edward Island</option>
<option <?php echo $state=='QC' ? 'selected="selected" ' : '';?>value=&#8221;QC&#8221;>Quebec</option>
<option <?php echo $state=='SK' ? 'selected="selected" ' : '';?>value=&#8221;SK&#8221;>Saskatchewan</option>
<option <?php echo $state=='YT' ? 'selected="selected" ' : '';?>value=&#8221;YT&#8221;>Yukon Territory</option>
<p></optgroup></p>
<p><optgroup label="U.S. States"></p>
<option <?php echo $state=='AK' ? 'selected="selected" ' : '';?>value=&#8221;AK&#8221;>Alaska</option>
<option <?php echo $state=='AL' ? 'selected="selected" ' : '';?>value=&#8221;AL&#8221;>Alabama</option>
<option <?php echo $state=='AZ' ? 'selected="selected" ' : '';?>value=&#8221;AZ&#8221;>Arizona</option>
<option <?php echo $state=='AR' ? 'selected="selected" ' : '';?>value=&#8221;AR&#8221;>Arkansas</option>
<option <?php echo $state=='CA' ? 'selected="selected" ' : '';?>value=&#8221;CA&#8221;>California</option>
<option <?php echo $state=='CO' ? 'selected="selected" ' : '';?>value=&#8221;CO&#8221;>Colorado</option>
<option <?php echo $state=='CT' ? 'selected="selected" ' : '';?>value=&#8221;CT&#8221;>Connecticut</option>
<option <?php echo $state=='DE' ? 'selected="selected" ' : '';?>value=&#8221;DE&#8221;>Delaware</option>
<option <?php echo $state=='DC' ? 'selected="selected" ' : '';?>value=&#8221;DC&#8221;>District of Columbia</option>
<option <?php echo $state=='FL' ? 'selected="selected" ' : '';?>value=&#8221;FL&#8221;>Florida</option>
<option <?php echo $state=='GA' ? 'selected="selected" ' : '';?>value=&#8221;GA&#8221;>Georgia</option>
<option <?php echo $state=='HI' ? 'selected="selected" ' : '';?>value=&#8221;HI&#8221;>Hawaii</option>
<option <?php echo $state=='ID' ? 'selected="selected" ' : '';?>value=&#8221;ID&#8221;>Idaho</option>
<option <?php echo $state=='IL' ? 'selected="selected" ' : '';?>value=&#8221;IL&#8221;>Illinois</option>
<option <?php echo $state=='IN' ? 'selected="selected" ' : '';?>value=&#8221;IN&#8221;>Indiana</option>
<option <?php echo $state=='IA' ? 'selected="selected" ' : '';?>value=&#8221;IA&#8221;>Iowa</option>
<option <?php echo $state=='KS' ? 'selected="selected" ' : '';?>value=&#8221;KS&#8221;>Kansas</option>
<option <?php echo $state=='KY' ? 'selected="selected" ' : '';?>value=&#8221;KY&#8221;>Kentucky</option>
<option <?php echo $state=='LA' ? 'selected="selected" ' : '';?>value=&#8221;LA&#8221;>Louisiana</option>
<option <?php echo $state=='ME' ? 'selected="selected" ' : '';?>value=&#8221;ME&#8221;>Maine</option>
<option <?php echo $state=='MD' ? 'selected="selected" ' : '';?>value=&#8221;MD&#8221;>Maryland</option>
<option <?php echo $state=='MA' ? 'selected="selected" ' : '';?>value=&#8221;MA&#8221;>Massachusetts</option>
<option <?php echo $state=='MI' ? 'selected="selected" ' : '';?>value=&#8221;MI&#8221;>Michigan</option>
<option <?php echo $state=='MN' ? 'selected="selected" ' : '';?>value=&#8221;MN&#8221;>Minnesota</option>
<option <?php echo $state=='MS' ? 'selected="selected" ' : '';?>value=&#8221;MS&#8221;>Mississippi</option>
<option <?php echo $state=='MO' ? 'selected="selected" ' : '';?>value=&#8221;MO&#8221;>Missouri</option>
<option <?php echo $state=='MT' ? 'selected="selected" ' : '';?>value=&#8221;MT&#8221;>Montana</option>
<option <?php echo $state=='NE' ? 'selected="selected" ' : '';?>value=&#8221;NE&#8221;>Nebraska</option>
<option <?php echo $state=='NV' ? 'selected="selected" ' : '';?>value=&#8221;NV&#8221;>Nevada</option>
<option <?php echo $state=='NH' ? 'selected="selected" ' : '';?>value=&#8221;NH&#8221;>New Hampshire</option>
<option <?php echo $state=='NJ' ? 'selected="selected" ' : '';?>value=&#8221;NJ&#8221;>New Jersey</option>
<option <?php echo $state=='NM' ? 'selected="selected" ' : '';?>value=&#8221;NM&#8221;>New Mexico</option>
<option <?php echo $state=='NY' ? 'selected="selected" ' : '';?>value=&#8221;NY&#8221;>New York</option>
<option <?php echo $state=='NC' ? 'selected="selected" ' : '';?>value=&#8221;NC&#8221;>North Carolina</option>
<option <?php echo $state=='ND' ? 'selected="selected" ' : '';?>value=&#8221;ND&#8221;>North Dakota</option>
<option <?php echo $state=='OH' ? 'selected="selected" ' : '';?>value=&#8221;OH&#8221;>Ohio</option>
<option <?php echo $state=='OK' ? 'selected="selected" ' : '';?>value=&#8221;OK&#8221;>Oklahoma</option>
<option <?php echo $state=='OR' ? 'selected="selected" ' : '';?>value=&#8221;OR&#8221;>Oregon</option>
<option <?php echo $state=='PA' ? 'selected="selected" ' : '';?>value=&#8221;PA&#8221;>Pennsylvania</option>
<option <?php echo $state=='PR' ? 'selected="selected" ' : '';?>value=&#8221;PR&#8221;>Puerto Rico</option>
<option <?php echo $state=='RI' ? 'selected="selected" ' : '';?>value=&#8221;RI&#8221;>Rhode Island</option>
<option <?php echo $state=='SC' ? 'selected="selected" ' : '';?>value=&#8221;SC&#8221;>South Carolina</option>
<option <?php echo $state=='SD' ? 'selected="selected" ' : '';?>value=&#8221;SD&#8221;>South Dakota</option>
<option <?php echo $state=='TN' ? 'selected="selected" ' : '';?>value=&#8221;TN&#8221;>Tennessee</option>
<option <?php echo $state=='TX' ? 'selected="selected" ' : '';?>value=&#8221;TX&#8221;>Texas</option>
<option <?php echo $state=='UT' ? 'selected="selected" ' : '';?>value=&#8221;UT&#8221;>Utah</option>
<option <?php echo $state=='VT' ? 'selected="selected" ' : '';?>value=&#8221;VT&#8221;>Vermont</option>
<option <?php echo $state=='VA' ? 'selected="selected" ' : '';?>value=&#8221;VA&#8221;>Virginia</option>
<option <?php echo $state=='WA' ? 'selected="selected" ' : '';?>value=&#8221;WA&#8221;>Washington</option>
<option <?php echo $state=='WV' ? 'selected="selected" ' : '';?>value=&#8221;WV&#8221;>West Virginia</option>
<option <?php echo $state=='WI' ? 'selected="selected" ' : '';?>value=&#8221;WI&#8221;>Wisconsin</option>
<option <?php echo $state=='WY' ? 'selected="selected" ' : '';?>value=&#8221;WY&#8221;>Wyoming</option>
<p></optgroup><br />
</select>
<p>[/php]</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukehowell.com/2010/03/23/php-form-select-for-states-and-provinces/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Events Calendar Announcements</title>
		<link>http://www.lukehowell.com/2009/05/22/events-calendar-announcements/</link>
		<comments>http://www.lukehowell.com/2009/05/22/events-calendar-announcements/#comments</comments>
		<pubDate>Fri, 22 May 2009 14:23:23 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lukehowell.com/?p=208</guid>
		<description><![CDATA[Hello everyone.  There are a few exciting announcements to make regarding the Events Calendar plugin. First off I would like to welcome a couple of new members to the Events Calendar team. Louis Lapointe has joined our team and has been a big help in getting collaboration going and sharing ideas to help with support [...]]]></description>
			<content:encoded><![CDATA[<div dir="ltr"><span style="font-size: x-small; color: #000000; font-family: Arial;">Hello everyone.  There are a few exciting announcements to make regarding the Events Calendar plugin.</span></div>
<p>First off I would like to welcome a couple of new members to the Events Calendar team.</p>
<ul>
<li>Louis Lapointe has joined our team and has been a big help in getting collaboration going and sharing ideas to help with support of the plugin.  With Louis&#8217; suggestion we will be having a bug tracker to help with the development of the plugin.  Louis is also putting together to major tests to bring the plugin to it&#8217;s knees.  This is good for us because the more bugs we catch the better it is for you.  Louis is setting up his site at <a href="http://www.laplix.com">http://www.laplix.com</a>.  Be sure to visit him.</li>
<li>The next addition is Coe Gwathney.  Coe is a long time friend of mine and is a very talented graphics artist.  He is working on a logo for us and will be very beneficial in the development of the plugin.  Coe is getting his feet wet with coding and WordPress.  Visit him at <a href="http://www.gwathneydesign.com">http://www.gwathneydesign.com</a> to see some of his work.</li>
</ul>
<p>The support for the plugin will be moved to <a href="http://www.wp-eventscalendar.com">http://www.wp-eventscalendar.com</a>.  There you will find a blog on the front page that will be used for announcements and to hear your comments.  There is also a forum at <a href="http://forum.wp-eventscalendar.com">http://forum.wp-eventscalendar.com</a>.  This forum will be used as you would expect.  General comments, questions and suggestions will be handled here.  There will be a bug tracker at <a href="http://tracker.wp-eventscalendar.com">http://tracker.wp-eventscalendar.com</a>.  This is powered by Mantis and will be up and running in the next day or two.</p>
<p>Lastly, with the popularity of Twitter, we decided that it would be beneficial to have a presence there.  You can find us at <a href="http://www.twitter.com/wpec">http://www.twitter.com/wpec</a>.  This will give you immediate access to anything that we think needs to be pushed out.  So whether you are online at your computer or using a mobile client you will be able to see updates pertaining to the Events Calendar.</p>
<p>Hope to see everyone at the new site for support.  I will still be posting some announcements and other things here but support will be handled at the new site.</p>
<p><span style="font-size: x-small; color: #000000; font-family: Arial;"> </span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukehowell.com/2009/05/22/events-calendar-announcements/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Follow me on Twitter</title>
		<link>http://www.lukehowell.com/2009/04/26/follow-me-on-twitter/</link>
		<comments>http://www.lukehowell.com/2009/04/26/follow-me-on-twitter/#comments</comments>
		<pubDate>Mon, 27 Apr 2009 03:39:21 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lukehowell.com/?p=205</guid>
		<description><![CDATA[I added an image in the sidebar that will allow you to follow me on twitter.  I don&#8217;t expect nor am I trying to reach the ranks or Ashton or Diddy, but I&#8217;ll take as many as I can get.  Just for your information, there might be some tweets that have non-PG language so if [...]]]></description>
			<content:encoded><![CDATA[<p>I added an image in the sidebar that will allow you to follow me on twitter.  I don&#8217;t expect nor am I trying to reach the ranks or Ashton or Diddy, but I&#8217;ll take as many as I can get.  Just for your information, there might be some tweets that have non-PG language so if you follow me be prepared.  I will used it for updates about the site as well, but there are personal ones as well.<br />
Also, a big thanks to my buddy Coe for the design of the Follow Me icon.  Thanks Coe.  Don&#8217;t forget to check out his <a title="Gwathney Design" href="http://www.gwathneydesign.com">site</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukehowell.com/2009/04/26/follow-me-on-twitter/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Site to Check Out</title>
		<link>http://www.lukehowell.com/2009/04/21/new-site-to-check-out/</link>
		<comments>http://www.lukehowell.com/2009/04/21/new-site-to-check-out/#comments</comments>
		<pubDate>Tue, 21 Apr 2009 22:08:40 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lukehowell.com/?p=202</guid>
		<description><![CDATA[A friend of mine has started a site now to show off some of his graphic design work.  He is self taught and very talented.  Check out Coe&#8217;s site, Gwathney Design for some top notch work.]]></description>
			<content:encoded><![CDATA[<p>A friend of mine has started a site now to show off some of his graphic design work.  He is self taught and very talented.  Check out Coe&#8217;s site, <a title="Gwathney Design" href="http://www.gwathneydesign.com">Gwathney Design</a> for some top notch work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukehowell.com/2009/04/21/new-site-to-check-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Version of Events Calendar</title>
		<link>http://www.lukehowell.com/2008/04/26/new-version-of-events-calendar/</link>
		<comments>http://www.lukehowell.com/2008/04/26/new-version-of-events-calendar/#comments</comments>
		<pubDate>Sun, 27 Apr 2008 01:48:59 +0000</pubDate>
		<dc:creator>Luke</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.lukehowell.com/2008/04/26/new-version-of-events-calendar/</guid>
		<description><![CDATA[Title: New Version of Events CalendarDescription: The new development version will now allow you to create a post from the events you create by checking the box that says &#8220;Create Post for Event&#8221;Start Time: 08:48:00Date: 2008-04-26]]></description>
			<content:encoded><![CDATA[<p><strong>Title: </strong>New Version of Events Calendar<br /><strong>Description: </strong>The new development version will now allow you to create a post from the events you create by checking the box that says &#8220;Create Post for Event&#8221;<br /><strong>Start Time: </strong>08:48:00<br /><strong>Date: </strong>2008-04-26</p>
]]></content:encoded>
			<wfw:commentRss>http://www.lukehowell.com/2008/04/26/new-version-of-events-calendar/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
