<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.3.3" -->
<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>Jörgs Blog</title>
	<link>http://joerg.ehrsam.de</link>
	<description></description>
	<pubDate>Sun, 31 Aug 2008 16:10:00 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
	<language>de</language>
			<item>
		<title>PHP Mail with German umlaut and utf-8 data from a database</title>
		<link>http://joerg.ehrsam.de/2008/06/06/php-mail-with-german-umlaut-and-utf-8-data-from-a-database/</link>
		<comments>http://joerg.ehrsam.de/2008/06/06/php-mail-with-german-umlaut-and-utf-8-data-from-a-database/#comments</comments>
		<pubDate>Fri, 06 Jun 2008 19:57:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[WEB-KnowHow]]></category>

		<category><![CDATA[charset=UTF-8]]></category>

		<category><![CDATA[database]]></category>

		<category><![CDATA[mail]]></category>

		<category><![CDATA[mysql]]></category>

		<category><![CDATA[php]]></category>

		<category><![CDATA[umlaut]]></category>

		<category><![CDATA[utf-8]]></category>

		<guid isPermaLink="false">http://joerg.ehrsam.de/2008/06/06/php-mail-with-german-umlaut-and-utf-8-data-from-a-database/</guid>
		<description><![CDATA[Ever had problems with german umlaut and data from mysql in mail subject and mail text?
Here is my solution: 
//mailheader &#8230;.
$mailheader =&#8217;MIME-Version: 1.0&#8242; .&#8221;\n&#8221;;
$mailheader.=&#8217;From: from@domain.net&#8217; . &#8220;\n&#8221;;
$mailheader.=&#8217;Reply-To: to@domain.net&#8217; . &#8220;\r\n&#8221;;
$mailheader.=&#8217;X-Mailer: PHP/&#8217; . phpversion().&#8221;\n&#8221;;
// Next Line solves only the utf-8 problem within the mail text
$mailheader.=&#8221;Content-Type: text/plain; charset=UTF-8\n&#8221;;
$mailheader.=&#8221;Content-transfer-encoding: 8bit\n&#8221;;
// The subject needs to be ASCII 7 Bit
// First: decode utf-8 Data from [...]]]></description>
			<content:encoded><![CDATA[<p><font size="2">Ever had problems with german umlaut and data from mysql in mail subject and mail text?<br />
Here is my solution:</font><font size="2"> <br />
</font><font size="2">//mailheader &#8230;.<br />
$mailheader =&#8217;MIME-Version: 1.0&#8242; .&#8221;\n&#8221;;<br />
$mailheader.=&#8217;From: <a href="mailto:from@domain.net'">from@domain.net&#8217;</a> . &#8220;\n&#8221;;<br />
$mailheader.=&#8217;Reply-To: <a href="mailto:to@domain.net'">to@domain.net&#8217;</a> . &#8220;\r\n&#8221;;<br />
$mailheader.=&#8217;X-Mailer: PHP/&#8217; . phpversion().&#8221;\n&#8221;;<br />
// Next Line solves only the utf-8 problem within the mail text<br />
$mailheader.=&#8221;Content-Type: text/plain; charset=UTF-8\n&#8221;;<br />
$mailheader.=&#8221;Content-transfer-encoding: 8bit\n&#8221;;<br />
// The subject needs to be ASCII 7 Bit<br />
// First: decode utf-8 Data from myql database<br />
$subject=&#8221;Example Mail für: &#8220;.utf8_decode($firstname.&#8221; &#8220;.$secondname);<br />
// second: encode subject to ASCII<br />
$subject=mb_encode_mimeheader( $subject, mb_internal_encoding(),&#8221;B&#8221;,&#8221;\n&#8221;);<br />
$mailtext=&#8221;&#8230;&#8230;.<br />
&#8211;snip&#8211;<br />
mail(<a href="mailto:'address@doamin.net">&#8216;address@domain.net</a>, $subject, $mailtext, $mailheader);</font></p>
]]></content:encoded>
			<wfw:commentRss>http://joerg.ehrsam.de/2008/06/06/php-mail-with-german-umlaut-and-utf-8-data-from-a-database/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Einbinden von Picasa Albums in Wordpress</title>
		<link>http://joerg.ehrsam.de/2008/04/02/einbinden-von-picasa-albums-in-wordpress/</link>
		<comments>http://joerg.ehrsam.de/2008/04/02/einbinden-von-picasa-albums-in-wordpress/#comments</comments>
		<pubDate>Wed, 02 Apr 2008 14:28:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[WEB-KnowHow]]></category>

		<category><![CDATA[albums]]></category>

		<category><![CDATA[picasa]]></category>

		<category><![CDATA[plugin]]></category>

		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://joerg.ehrsam.de/2008/04/02/einbinden-von-picasa-albums-in-wordpress/</guid>
		<description><![CDATA[The excellent plugin from Steve Lam, modified by Klaus Hillebrands, suffered another innovation from myself. It is now possible to select specific Picasa Albums from a certain user.
Just enter a TAG \&#60;\!\-\-picasa-albums-\-NAME_OF_ALBUM-\-picasa-albums-name\-\-\&#62;
(without the \) inside your article.
Download my version from:
picasa-albums-je
]]></description>
			<content:encoded><![CDATA[<p>The excellent plugin from Steve Lam, modified by Klaus Hillebrands, suffered another innovation from myself. It is now possible to select specific Picasa Albums from a certain user.</p>
<p>Just enter a TAG \&lt;\!\-\-picasa-albums-\-NAME_OF_ALBUM-\-picasa-albums-name\-\-\&gt;<br />
(without the \) inside your article.<br />
Download my version from:<br />
<a href="http://joerg.ehrsam.de/wp-content/uploads/2008/04/picasa-albums-je2.zip" title="picasa-albums-je">picasa-albums-je</a></p>
]]></content:encoded>
			<wfw:commentRss>http://joerg.ehrsam.de/2008/04/02/einbinden-von-picasa-albums-in-wordpress/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Der Konfirmant</title>
		<link>http://joerg.ehrsam.de/2008/03/25/der-konfirmant/</link>
		<comments>http://joerg.ehrsam.de/2008/03/25/der-konfirmant/#comments</comments>
		<pubDate>Tue, 25 Mar 2008 03:11:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://joerg.ehrsam.de/2008/03/25/der-konfirmant/</guid>
		<description><![CDATA[Julius Konfirmation März 200814 Photos &#8212; March 16, 2008
]]></description>
			<content:encoded><![CDATA[<p><div id="picasa-albums"><div class="album"><a href="http://joerg.ehrsam.de/2008/03/25/der-konfirmant/?picasa_album=5181429765973647409" title="Julius Konfirmation März 2008" class="album-link"><img src="http://lh5.ggpht.com/_YBjsn9sJyTM/R-gi63V-oDE/AAAAAAAAAIw/aUpzqeeldHU/s160-c/JuliusKonfirmationMRz2008.jpg" alt="Julius Konfirmation März 2008" height="160" width="160"/></a><h4><a href="http://joerg.ehrsam.de/2008/03/25/der-konfirmant/?picasa_album=5181429765973647409">Julius Konfirmation März 2008</a></h4><p></p><p>14 Photos &mdash; March 16, 2008</p></div><div class="clear"></div></div></p>
]]></content:encoded>
			<wfw:commentRss>http://joerg.ehrsam.de/2008/03/25/der-konfirmant/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Morgen..grauen..vor der Arbeit</title>
		<link>http://joerg.ehrsam.de/2008/02/12/lifeblog-inhalt-3/</link>
		<comments>http://joerg.ehrsam.de/2008/02/12/lifeblog-inhalt-3/#comments</comments>
		<pubDate>Tue, 12 Feb 2008 00:41:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Lifeblog]]></category>

		<guid isPermaLink="false">http://joerg.ehrsam.de/2008/02/12/lifeblog-inhalt-3/</guid>
		<description><![CDATA[
Der Blick aus dem Schlafzimmer
]]></description>
			<content:encoded><![CDATA[<p><a href="http://joerg.ehrsam.de/wp-content/uploads/lifeblog-11022008059.jpg"><img src="http://joerg.ehrsam.de/wp-content/uploads/lifeblog-11022008059.thumbnail.jpg" alt="Mo 11.02.2008 07:40 11022008059" /></a></p>
<h4 align="left">Der Blick aus dem Schlafzimmer</h4>
]]></content:encoded>
			<wfw:commentRss>http://joerg.ehrsam.de/2008/02/12/lifeblog-inhalt-3/feed/</wfw:commentRss>
		</item>
		<item>
		<title>ASV im winter</title>
		<link>http://joerg.ehrsam.de/2008/02/12/asv-2/</link>
		<comments>http://joerg.ehrsam.de/2008/02/12/asv-2/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 23:56:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Lifeblog]]></category>

		<guid isPermaLink="false">http://joerg.ehrsam.de/2008/02/12/asv-2/</guid>
		<description><![CDATA[
Ein Traum in Februar
]]></description>
			<content:encoded><![CDATA[<p><a href="http://joerg.ehrsam.de/wp-content/uploads/lifeblog-09022008027.jpg"><img src="http://joerg.ehrsam.de/wp-content/uploads/lifeblog-09022008027.thumbnail.jpg" alt="Sa 09.02.2008 10:13 09022008027" /></a></p>
<h4>Ein Traum in Februar</h4>
]]></content:encoded>
			<wfw:commentRss>http://joerg.ehrsam.de/2008/02/12/asv-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Asv</title>
		<link>http://joerg.ehrsam.de/2008/02/12/asv/</link>
		<comments>http://joerg.ehrsam.de/2008/02/12/asv/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 23:53:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Lifeblog]]></category>

		<guid isPermaLink="false">http://joerg.ehrsam.de/2008/02/12/asv/</guid>
		<description><![CDATA[
Ein Traum im Februar
]]></description>
			<content:encoded><![CDATA[<p><a href="http://joerg.ehrsam.de/wp-content/uploads/lifeblog-09022008033.jpg"><img src="http://joerg.ehrsam.de/wp-content/uploads/lifeblog-09022008033.thumbnail.jpg" alt="Sa 09.02.2008 10:17 09022008033" /></a></p>
<p>Ein Traum im Februar</p>
]]></content:encoded>
			<wfw:commentRss>http://joerg.ehrsam.de/2008/02/12/asv/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Lifeblog-Inhalt</title>
		<link>http://joerg.ehrsam.de/2008/02/12/lifeblog-inhalt-2/</link>
		<comments>http://joerg.ehrsam.de/2008/02/12/lifeblog-inhalt-2/#comments</comments>
		<pubDate>Mon, 11 Feb 2008 23:50:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Lifeblog]]></category>

		<guid isPermaLink="false">http://joerg.ehrsam.de/2008/02/12/lifeblog-inhalt-2/</guid>
		<description><![CDATA[



]]></description>
			<content:encoded><![CDATA[<div>
<div>
<a href="http://joerg.ehrsam.de/wp-content/uploads/lifeblog-10022008057.jpg"><img src="http://joerg.ehrsam.de/wp-content/uploads/lifeblog-10022008057.thumbnail.jpg" alt="So 10.02.2008 11:51 10022008057" /></a></div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://joerg.ehrsam.de/2008/02/12/lifeblog-inhalt-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Blumen</title>
		<link>http://joerg.ehrsam.de/2007/09/30/lifeblog-inhalt/</link>
		<comments>http://joerg.ehrsam.de/2007/09/30/lifeblog-inhalt/#comments</comments>
		<pubDate>Sun, 30 Sep 2007 14:44:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Lifeblog]]></category>

		<guid isPermaLink="false">http://joerg.ehrsam.de/2007/09/30/lifeblog-inhalt/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[<p><a href="http://joerg.ehrsam.de/wp-content/uploads/lifeblog-30092007230.jpg"><img src="http://joerg.ehrsam.de/wp-content/uploads/lifeblog-30092007230.thumbnail.jpg" alt="So 30.09.2007 16:35 30092007230" /></a></p>
<p> <a href="http://joerg.ehrsam.de/2007/09/30/lifeblog-inhalt/#more-7" class="more-link">(more&#8230;)</a></p>
]]></content:encoded>
			<wfw:commentRss>http://joerg.ehrsam.de/2007/09/30/lifeblog-inhalt/feed/</wfw:commentRss>
		</item>
		<item>
		<title>LifeBlog mit NOKIA N95</title>
		<link>http://joerg.ehrsam.de/2007/09/30/mein-blog-ist-online/</link>
		<comments>http://joerg.ehrsam.de/2007/09/30/mein-blog-ist-online/#comments</comments>
		<pubDate>Sun, 30 Sep 2007 11:03:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Lifeblog]]></category>

		<guid isPermaLink="false">http://joerg.ehrsam.de/2007/09/30/mein-blog-ist-online/</guid>
		<description><![CDATA[Mit dem LifeBlog Script WORDPRESS funktioniert die Veröffentlichung von:

Bildern, gut
SMS, gut
Videos, bisher nicht

Run-time Umgebung:
SUSE Linux 9.1, PHP4(!), WORDPRESS DE 2.2.2
]]></description>
			<content:encoded><![CDATA[<p>Mit dem <a href="http://joerg.ehrsam.de/wp-content/uploads/2007/09/lifeblog.zip" title="LifeBlog Script WORDPRESS">LifeBlog Script WORDPRESS</a> funktioniert die Veröffentlichung von:</p>
<ul>
<li>Bildern, gut</li>
<li>SMS, gut</li>
<li>Videos, bisher nicht</li>
</ul>
<p>Run-time Umgebung:<br />
SUSE Linux 9.1, PHP4(!), WORDPRESS DE 2.2.2</p>
]]></content:encoded>
			<wfw:commentRss>http://joerg.ehrsam.de/2007/09/30/mein-blog-ist-online/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Jörgs Blog geht ONLINE!</title>
		<link>http://joerg.ehrsam.de/2007/09/29/5/</link>
		<comments>http://joerg.ehrsam.de/2007/09/29/5/#comments</comments>
		<pubDate>Sat, 29 Sep 2007 12:58:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
		
		<category><![CDATA[Allgemein]]></category>

		<guid isPermaLink="false">http://joerg.ehrsam.de/2007/09/30/5/</guid>
		<description><![CDATA[
]]></description>
			<content:encoded><![CDATA[
]]></content:encoded>
			<wfw:commentRss>http://joerg.ehrsam.de/2007/09/29/5/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
