<?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>Jeanne Mitchell</title>
	<atom:link href="http://frailandforgotten.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://frailandforgotten.com</link>
	<description>Raspy-voiced Web development</description>
	<lastBuildDate>Fri, 10 Jun 2011 00:00:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Happy Birthday, Les Paul!</title>
		<link>http://frailandforgotten.com/happy-birthday-les-paul/</link>
		<comments>http://frailandforgotten.com/happy-birthday-les-paul/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 00:00:15 +0000</pubDate>
		<dc:creator>Jeanne</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://frailandforgotten.com/?p=144</guid>
		<description><![CDATA[http://goo.gl/doodle/Qubgg]]></description>
			<content:encoded><![CDATA[<p>http://goo.gl/doodle/Qubgg</p>
]]></content:encoded>
			<wfw:commentRss>http://frailandforgotten.com/happy-birthday-les-paul/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Fix-a-Ford</title>
		<link>http://frailandforgotten.com/fix-a-ford/</link>
		<comments>http://frailandforgotten.com/fix-a-ford/#comments</comments>
		<pubDate>Mon, 09 May 2011 16:07:30 +0000</pubDate>
		<dc:creator>Jeanne</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://frailandforgotten.com/?p=141</guid>
		<description><![CDATA[That darn air bag light was driving me crazy. I tried googling it again. This time I found out there are tons of people with the same issue and this guy happened to have a document with the air bag &#8230; <a href="http://frailandforgotten.com/fix-a-ford/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>That darn air bag light was driving me crazy.  I tried googling it again.  This time I found out there are tons of people with the same issue and this guy happened to have a document with the air bag codes.  Air bag code 47: Passenger seatbelt sensor.  Disconnected it and reconnected and the light is gone.</p>
<p>Next stop: hatch door.</p>
]]></content:encoded>
			<wfw:commentRss>http://frailandforgotten.com/fix-a-ford/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP mail() Function</title>
		<link>http://frailandforgotten.com/php-mail-function/</link>
		<comments>http://frailandforgotten.com/php-mail-function/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 20:16:36 +0000</pubDate>
		<dc:creator>Jeanne</dc:creator>
				<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://frailandforgotten.com/?p=132</guid>
		<description><![CDATA[The PHP mail() function is handy. You can use it to have people contact you through a form on your Web page if you don&#8217;t feel comfortable displaying your email address. The sample code below will send an email to &#8230; <a href="http://frailandforgotten.com/php-mail-function/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>The PHP mail() function is handy. You can use it to have people contact you through a form on your Web page if you don&#8217;t feel comfortable displaying your email address. The sample code below will send an email to &#8220;contact@mydomain.com&#8221; with the subject and message as the respective text inputs below.</p>


<div class="wp-geshi-highlight-wrap5"><div class="wp-geshi-highlight-wrap4"><div class="wp-geshi-highlight-wrap3"><div class="wp-geshi-highlight-wrap2"><div class="wp-geshi-highlight-wrap"><div class="wp-geshi-highlight"><div class="php"><ol><li class="li1"><pre class="de1"><span class="kw2">&lt;?php</span></pre></li><li class="li1"><pre class="de1"><span class="co1">// check to see if send button has been clicked</span></pre></li><li class="li1"><pre class="de1"><span class="kw1">if</span> <span class="br0">&#40;</span><span class="kw3">isset</span><span class="br0">&#40;</span><span class="re0">$_REQUEST</span><span class="br0">&#91;</span><span class="st0">&quot;submit&quot;</span><span class="br0">&#93;</span><span class="br0">&#41;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></pre></li><li class="li1"><pre class="de1">&nbsp;</pre></li><li class="li1"><pre class="de1">	<span class="re0">$to</span> <span class="sy0">=</span> <span class="st0">&quot;contact@mydomain.com&quot;</span><span class="sy0">;</span></pre></li><li class="li1"><pre class="de1">	<span class="re0">$from</span> <span class="sy0">=</span> <span class="re0">$_REQUEST</span><span class="br0">&#91;</span><span class="st0">&quot;email&quot;</span><span class="br0">&#93;</span><span class="sy0">;</span></pre></li><li class="li1"><pre class="de1">	<span class="re0">$subject</span> <span class="sy0">=</span> <span class="re0">$_REQUEST</span><span class="br0">&#91;</span><span class="st0">&quot;subject&quot;</span><span class="br0">&#93;</span><span class="sy0">;</span></pre></li><li class="li1"><pre class="de1">	<span class="re0">$message</span> <span class="sy0">=</span> <span class="re0">$_REQUEST</span><span class="br0">&#91;</span><span class="st0">&quot;message&quot;</span><span class="br0">&#93;</span><span class="sy0">;</span></pre></li><li class="li1"><pre class="de1">&nbsp;</pre></li><li class="li1"><pre class="de1">	<span class="co1">// validate email address</span></pre></li><li class="li1"><pre class="de1">	<span class="kw1">if</span> <span class="br0">&#40;</span><span class="sy0">!</span><span class="kw3">filter_var</span><span class="br0">&#40;</span><span class="re0">$from</span><span class="sy0">,</span> FILTER_VALIDATE_EMAIL<span class="br0">&#41;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></pre></li><li class="li1"><pre class="de1">		<span class="re0">$err_from</span> <span class="sy0">=</span> <span class="kw4">true</span><span class="sy0">;</span></pre></li><li class="li1"><pre class="de1">	<span class="br0">&#125;</span></pre></li><li class="li1"><pre class="de1">&nbsp;</pre></li><li class="li1"><pre class="de1">	<span class="kw1">if</span> <span class="br0">&#40;</span><span class="re0">$err_from</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></pre></li><li class="li1"><pre class="de1">		<span class="co1">// error message goes here</span></pre></li><li class="li1"><pre class="de1">	<span class="br0">&#125;</span> <span class="kw1">else</span> <span class="br0">&#123;</span></pre></li><li class="li1"><pre class="de1">		<span class="co1">// try to send it</span></pre></li><li class="li1"><pre class="de1">		<span class="kw1">if</span> <span class="br0">&#40;</span><span class="kw3">mail</span><span class="br0">&#40;</span><span class="re0">$to</span><span class="sy0">,</span> <span class="re0">$subject</span><span class="sy0">,</span> <span class="re0">$message</span><span class="sy0">,</span> <span class="st0">&quot;From: <span class="es4">$from</span>&quot;</span><span class="br0">&#41;</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></pre></li><li class="li1"><pre class="de1">			<span class="co1">// message has been sent</span></pre></li><li class="li1"><pre class="de1">		<span class="br0">&#125;</span> <span class="kw1">else</span> <span class="br0">&#123;</span></pre></li><li class="li1"><pre class="de1">			<span class="co1">// there's been an error</span></pre></li><li class="li1"><pre class="de1">		<span class="br0">&#125;</span></pre></li><li class="li1"><pre class="de1">	<span class="br0">&#125;</span></pre></li><li class="li1"><pre class="de1"><span class="br0">&#125;</span></pre></li><li class="li1"><pre class="de1"><span class="sy1">?&gt;</span></pre></li><li class="li1"><pre class="de1">&lt;form method=&quot;post&quot; action=&quot;<span class="kw2">&lt;?php</span> <span class="kw1">echo</span> <span class="re0">$_SERVER</span><span class="br0">&#91;</span><span class="st_h">'SCRIPT_NAME'</span><span class="br0">&#93;</span><span class="sy0">;</span> <span class="sy1">?&gt;</span>&quot;&gt;</pre></li><li class="li1"><pre class="de1">	&lt;p&gt;&lt;label&gt;From:&lt;br /&gt;&lt;input name=&quot;email&quot; type=&quot;text&quot; value=&quot;<span class="kw2">&lt;?php</span> <span class="kw1">echo</span> <span class="re0">$from</span><span class="sy0">;</span> <span class="sy1">?&gt;</span>&quot; /&gt;&lt;/label&gt;&lt;/p&gt;</pre></li><li class="li1"><pre class="de1">	&lt;p&gt;&lt;label&gt;Subject:&lt;br /&gt;&lt;input name=&quot;subject&quot; type=&quot;text&quot; value=&quot;<span class="kw2">&lt;?php</span> <span class="kw1">echo</span> <span class="re0">$subject</span><span class="sy0">;</span> <span class="sy1">?&gt;</span>&quot; /&gt;&lt;/label&gt;&lt;/p&gt;</pre></li><li class="li1"><pre class="de1">	&lt;p&gt;&lt;label&gt;Message:&lt;br /&gt;&lt;textarea name=&quot;message&quot; rows=&quot;10&quot;&gt;<span class="kw2">&lt;?php</span> <span class="kw1">echo</span> <span class="re0">$message</span><span class="sy0">;</span> <span class="sy1">?&gt;</span>&lt;/textarea&gt;&lt;/label&gt;&lt;/p&gt;</pre></li><li class="li1"><pre class="de1">	&lt;p&gt;&lt;input name=&quot;submit&quot; type=&quot;submit&quot; value=&quot;Send&quot; /&gt;&lt;/p&gt;</pre></li><li class="li1"><pre class="de1">&lt;/form&gt;</pre></li></ol></div></div></div></div></div></div></div>


<p><a href="/live/mail.php">See it live</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://frailandforgotten.com/php-mail-function/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My new favorite Web site</title>
		<link>http://frailandforgotten.com/my-new-favorite-web-site/</link>
		<comments>http://frailandforgotten.com/my-new-favorite-web-site/#comments</comments>
		<pubDate>Thu, 13 Jan 2011 23:08:00 +0000</pubDate>
		<dc:creator>Jeanne</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://frailandforgotten.com/?p=93</guid>
		<description><![CDATA[Genius.  Pure genius. http://officeofstrategicinfluence.com/]]></description>
			<content:encoded><![CDATA[<p>Genius.  Pure genius.</p>
<p><a href="http://officeofstrategicinfluence.com/">http://officeofstrategicinfluence.com/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://frailandforgotten.com/my-new-favorite-web-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stephanie Miller is out! My chances have increased.</title>
		<link>http://frailandforgotten.com/stephanie-miller-is-out-my-chances-have-increased/</link>
		<comments>http://frailandforgotten.com/stephanie-miller-is-out-my-chances-have-increased/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 15:28:23 +0000</pubDate>
		<dc:creator>Jeanne</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://frailandforgotten.com/?p=89</guid>
		<description><![CDATA[Rated one of the most influential female radio hosts has just come out of the closet. I kind of figured that&#8230;it makes sense. But I know all her listeners are really proud of her. She shouldn&#8217;t have any problems getting a &#8230; <a href="http://frailandforgotten.com/stephanie-miller-is-out-my-chances-have-increased/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Rated one of the most influential female radio hosts has just come out of the closet. I kind of figured that&#8230;it makes sense. But I know all her listeners are really proud of her. She shouldn&#8217;t have any problems getting a date because she&#8217;s freaking hot! Congratulate her for letting herself be happy: <a href="mailto:stephanie@stephaniemiller.com">stephanie@stephaniemiller.com</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://frailandforgotten.com/stephanie-miller-is-out-my-chances-have-increased/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>From Here to There</title>
		<link>http://frailandforgotten.com/from-here-to-there/</link>
		<comments>http://frailandforgotten.com/from-here-to-there/#comments</comments>
		<pubDate>Tue, 03 Aug 2010 21:41:19 +0000</pubDate>
		<dc:creator>Jeanne</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://frailandforgotten.com/?p=87</guid>
		<description><![CDATA[After a lot of thought, I moved out of Doteasy.com. It was a great starter home, but the rent got higher as I wanted more options. So, I moved into GoDaddy.com. The economy package is a great deal. Check it &#8230; <a href="http://frailandforgotten.com/from-here-to-there/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After a lot of thought, I moved out of <a href="http://doteasy.com/">Doteasy.com</a>. It was a great starter home, but the rent got higher as I wanted more options. So, I moved into <a href="http://godaddy.com/">GoDaddy.com</a>. The economy package is a great deal. Check it out:</p>
<p>If you end up getting anything through GoDaddy, you should send some love my way:</p>
<p><a href="http://affiliate.godaddy.com/redirect/AC5D562301F8D19A735128AE190E81702C59B46F9B519A3083564D732382B90330274A7D093EDAB49525E3A048A5A830/?r="><img src="http://img1.wsimg.com/affiliate/01/ad/SupportUsJar_125x125.gif" alt="Support me when you order from GoDaddy.com" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://frailandforgotten.com/from-here-to-there/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Cross Posting</title>
		<link>http://frailandforgotten.com/wordpress-cross-posting/</link>
		<comments>http://frailandforgotten.com/wordpress-cross-posting/#comments</comments>
		<pubDate>Fri, 21 May 2010 04:19:48 +0000</pubDate>
		<dc:creator>Jeanne</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://frailandforgotten.com/?p=57</guid>
		<description><![CDATA[After a good year, I&#8217;m back on the Web.  I had deleted my myspace and facebook accounts because they take so much time to manicure.  I was excited to see that there are plugins to update each of these social &#8230; <a href="http://frailandforgotten.com/wordpress-cross-posting/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>After a good year, I&#8217;m back on the Web.  I had deleted my myspace and facebook accounts because they take so much time to manicure.  I was excited to see that there are plugins to update each of these social sites from WordPress.  Two birds, one stone.  I created new accounts and even threw a little Twitter action in the mix.  So, this post is a test to see if these plugins work.</p>
<ul>
<li><a href="http://noumenon.roderickrussell.com/downloads/myspacecrossposter_v2_0a.zip">MySpace Cross Poster v2.0</a></li>
<li><a href="http://downloads.wordpress.org/plugin/wordbook.0.15.7.zip">Wordbook</a></li>
<li><a href="http://downloads.wordpress.org/plugin/twitter-tools.2.3.1.zip">Twitter Tools</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://frailandforgotten.com/wordpress-cross-posting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Save some time with $_SERVER variables</title>
		<link>http://frailandforgotten.com/save-some-time-with-_server-variables/</link>
		<comments>http://frailandforgotten.com/save-some-time-with-_server-variables/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 06:09:01 +0000</pubDate>
		<dc:creator>Jeanne</dc:creator>
				<category><![CDATA[PHP Tutorials]]></category>
		<category><![CDATA[$_SERVER]]></category>

		<guid isPermaLink="false">http://frailandforgotten.com/?p=48</guid>
		<description><![CDATA[I spend a lot of time testing out certain things with $_SERVER array.  I often forget what I should be getting as a value for a specific variable.  Sometimes what variable it is that I am wanting to work with.  &#8230; <a href="http://frailandforgotten.com/save-some-time-with-_server-variables/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I spend a lot of time testing out certain things with $_SERVER array.  I often forget what I should be getting as a value for a specific variable.  Sometimes what variable it is that I am wanting to work with.  Here&#8217;s a quick loop that can generate the $_SERVER array all nice and neat like:</p>


<div class="wp-geshi-highlight-wrap5"><div class="wp-geshi-highlight-wrap4"><div class="wp-geshi-highlight-wrap3"><div class="wp-geshi-highlight-wrap2"><div class="wp-geshi-highlight-wrap"><div class="wp-geshi-highlight"><div class="php"><ol><li class="li1"><pre class="de1"><span class="kw1">foreach</span> <span class="br0">&#40;</span><span class="re0">$_SERVER</span> <span class="kw1">as</span> <span class="re0">$variable</span> <span class="sy0">=&amp;</span>gt<span class="sy0">;</span> <span class="re0">$value</span><span class="br0">&#41;</span> <span class="br0">&#123;</span></pre></li><li class="li1"><pre class="de1">	<span class="kw1">echo</span> <span class="re0">$variable</span> <span class="sy0">.</span> <span class="st0">&quot; = &quot;</span> <span class="sy0">.</span> <span class="re0">$value</span> <span class="sy0">.</span> <span class="st0">&quot;&amp;lt;br /&amp;gt;&quot;</span><span class="sy0">;</span></pre></li><li class="li1"><pre class="de1"><span class="br0">&#125;</span></pre></li></ol></div></div></div></div></div></div></div>


<p>To jazz it up, you can add unordered list elements or tables to it.  What&#8217;s not to love?</p>
]]></content:encoded>
			<wfw:commentRss>http://frailandforgotten.com/save-some-time-with-_server-variables/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PC Gamers of Spanaway</title>
		<link>http://frailandforgotten.com/pc-gamers-of-spanaway/</link>
		<comments>http://frailandforgotten.com/pc-gamers-of-spanaway/#comments</comments>
		<pubDate>Sun, 14 Mar 2010 23:20:01 +0000</pubDate>
		<dc:creator>Jeanne</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://frailandforgotten.com/?p=33</guid>
		<description><![CDATA[There&#8217;s nothing like a local computer business. PC Gamers in Spanaway is where I got my first computer and it&#8217;s good to see that after all these years they&#8217;re still around.]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s nothing like a local computer business. PC Gamers in Spanaway is where I got my first computer and it&#8217;s good to see that after all these years they&#8217;re still around.</p>
]]></content:encoded>
			<wfw:commentRss>http://frailandforgotten.com/pc-gamers-of-spanaway/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

