<?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>Glotzfisch.de &#187; PHP</title>
	<atom:link href="http://www.glotzfisch.de/category/web-programming/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.glotzfisch.de</link>
	<description>If something does not work out the way you want it to - try something different</description>
	<lastBuildDate>Wed, 26 May 2010 08:43:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>PHP &gt; Sort array by keys</title>
		<link>http://www.glotzfisch.de/php-sort-array-by-keys/</link>
		<comments>http://www.glotzfisch.de/php-sort-array-by-keys/#comments</comments>
		<pubDate>Mon, 21 Jul 2008 12:42:55 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/php-sort-array-by-keys/</guid>
		<description><![CDATA[ignoring capitalisation:
uksort($tagList, 'strnatcasecmp');
]]></description>
			<content:encoded><![CDATA[<p>ignoring capitalisation:</p>
<pre>uksort($tagList, 'strnatcasecmp');</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/php-sort-array-by-keys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert Umlaute to UTF-8</title>
		<link>http://www.glotzfisch.de/convert-umlaute-to-utf-8/</link>
		<comments>http://www.glotzfisch.de/convert-umlaute-to-utf-8/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 08:52:19 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/convert-umlaute-to-utf-8/</guid>
		<description><![CDATA[
foreach ($aline as $val) {
$bline[] = iconv("ISO-8859-1","UTF-8",$val);
}

]]></description>
			<content:encoded><![CDATA[<pre>
foreach ($aline as $val) {
$bline[] = iconv("ISO-8859-1","UTF-8",$val);
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/convert-umlaute-to-utf-8/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A Checkbox Group in PHP</title>
		<link>http://www.glotzfisch.de/a-checkbox-group-in-php/</link>
		<comments>http://www.glotzfisch.de/a-checkbox-group-in-php/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 13:13:18 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[(D)HTML]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/a-checkbox-group-in-php/</guid>
		<description><![CDATA[Und ich dachte, das ginge gar nicht&#8230; geht aber doch.
Wenn die Checkboxen alle denselben Namen haben, überschreibt die zweite die erste etc. Aber in PHP gibts dafür ja Arrays. Und man glaubt es kaum, man kann den Namen der Checkbox als Array definieren:

&#60;input type="checkbox" name="types[]" value="html"&#62; html&#60;br&#62;
&#60;input type="checkbox" name="types[]" value="php"&#62; php&#60;br&#62;
&#60;input type="checkbox" name="types[]" value="jpg"&#62; jpg&#60;br&#62;
und [...]]]></description>
			<content:encoded><![CDATA[<p>Und ich dachte, das ginge gar nicht&#8230; geht aber doch.</p>
<p>Wenn die Checkboxen alle denselben Namen haben, überschreibt die zweite die erste etc. Aber in PHP gibts dafür ja Arrays. Und man glaubt es kaum, man kann den Namen der Checkbox als Array definieren:</p>
<pre>
&lt;input type="checkbox" name="types[]" value="html"&gt; html&lt;br&gt;
&lt;input type="checkbox" name="types[]" value="php"&gt; php&lt;br&gt;
&lt;input type="checkbox" name="types[]" value="jpg"&gt; jpg&lt;br&gt;</pre>
<p>und dann ist:</p>
<pre>$a_types = ($_REQUEST["types"]);</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/a-checkbox-group-in-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A small File Upload Checker</title>
		<link>http://www.glotzfisch.de/a-small-file-upload-checker/</link>
		<comments>http://www.glotzfisch.de/a-small-file-upload-checker/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 08:12:08 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/a-small-file-upload-checker/</guid>
		<description><![CDATA[
&#60;h2&#62;Check file&#60;/h2&#62;
&#60;form name="checkfile" method="POST" action="&#60;?=$PHP_SELF?&#62;" enctype="multipart/form-data" &#62;
&#60;input type="hidden" name="max_file_size" value="8000000" /&#62;
&#60;input type="file" name="file" id="c_f" size="46" &#62;
&#60;input type="submit" value="check file"&#62;
&#60;/form&#62;

&#60;?php
$fname = $_FILES['file']['name'];
if ($fname) {
echo "File uploaded: ".$fname."&#60;br&#62;";
echo "File Type: ".$_FILES['file']['type']."&#60;br&#62;";
echo "Error: ".$_FILES['file']['error']."&#60;br&#62;";
echo "Size: ".$_FILES['file']['size']."&#60;br&#62;";

if ($err  = $_FILES['file']['error']) {
switch ($err) {
case 1: #UPLOAD_ERR_INI_SIZE:
$msg.= "The uploaded file exceeds the maximum filesize. Please choose a smaller file.&#60;br&#62;";
break;
case 2: [...]]]></description>
			<content:encoded><![CDATA[<pre>
&lt;h2&gt;Check file&lt;/h2&gt;
&lt;form name="checkfile" method="POST" action="&lt;?=$PHP_SELF?&gt;" enctype="multipart/form-data" &gt;
&lt;input type="hidden" name="max_file_size" value="8000000" /&gt;
&lt;input type="file" name="file" id="c_f" size="46" &gt;
&lt;input type="submit" value="check file"&gt;
&lt;/form&gt;

&lt;?php
$fname = $_FILES['file']['name'];
if ($fname) {
echo "File uploaded: ".$fname."&lt;br&gt;";
echo "File Type: ".$_FILES['file']['type']."&lt;br&gt;";
echo "Error: ".$_FILES['file']['error']."&lt;br&gt;";
echo "Size: ".$_FILES['file']['size']."&lt;br&gt;";

if ($err  = $_FILES['file']['error']) {
switch ($err) {
case 1: #UPLOAD_ERR_INI_SIZE:
$msg.= "The uploaded file exceeds the maximum filesize. Please choose a smaller file.&lt;br&gt;";
break;
case 2: #UPLOAD_ERR_FORM_SIZE:
$msg.= "The uploaded file exceeds the maximum filesize. Please choose a smaller file.&lt;br&gt;";
break;
case 3: #UPLOAD_ERR_PARTIAL:
$msg.= "The uploaded file was only partially uploaded.";
break;
case 4: #UPLOAD_ERR_NO_FILE:
$msg .= "No file was uploaded.";
break;
case 6: #UPLOAD_ERR_NO_TMP_DIR:
$msg .= "Missing a temporary folder.";
break;
case 7: #UPLOAD_ERR_CANT_WRITE:
$msg = "Failed to write file to disk";
break;
default:
$msg.="There was an error with your file upload.";
}
}
echo $msg;
$uploadfile = dirname($_SERVER['SCRIPT_FILENAME']).'/temp/'.$fname;
if (move_uploaded_file($_FILES['file']['tmp_name'], $uploadfile)) {
$msg =  "Your file was successfully uploaded.&lt;br&gt;";
} else {
$msg = "An Error occurred while uploading your file. Please contact the administrator via email";
}
echo '&lt;p&gt;'.$msg.'&lt;a href="temp/'.$fname.'"&gt;'.$fname."&lt;/a&gt;&lt;/p&gt;";
}

?&gt;
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/a-small-file-upload-checker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RegExp und PHP</title>
		<link>http://www.glotzfisch.de/regexp-und-php/</link>
		<comments>http://www.glotzfisch.de/regexp-und-php/#comments</comments>
		<pubDate>Wed, 27 Feb 2008 12:17:40 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[RegExp]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/regexp-und-php/</guid>
		<description><![CDATA[
 Finde einen Text, der mit font+4 und fett markiert ist und ersetze das ganze durch &#60;h1&#62;&#8230;&#60;/h1&#62;

     $string2 =
     ereg_replace('&#60;font size=.+4.&#62;+ ?&#60;b class=.bltxt.&#62;(.*)&#60;/b&#62; ?&#60;/font&#62;'
     ,'&#60;h1&#62;\1&#60;/h1&#62;',$string);

ersetze alle Pfade, die mit ../../gallery/ oder ../gallery beginnen und danach irgendwas haben durch &#8211; na egal (diesmal mit [...]]]></description>
			<content:encoded><![CDATA[<ul>
<li> Finde einen Text, der mit font+4 und fett markiert ist und ersetze das ganze durch &lt;h1&gt;&#8230;&lt;/h1&gt;</li>
</ul>
<pre>     $string2 =
     ereg_replace('&lt;font size=.+4.&gt;+ ?&lt;b class=.bltxt.&gt;(.*)&lt;/b&gt; ?&lt;/font&gt;'
     ,'&lt;h1&gt;\1&lt;/h1&gt;',$string);</pre>
<ul>
<li>ersetze alle Pfade, die mit ../../gallery/ oder ../gallery beginnen und danach irgendwas haben durch &#8211; na egal (diesmal mit preg-replace), hier ist der Suchstring:</li>
</ul>
<pre>     /(\.\.\/)+?gallery\/.+?"/</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/regexp-und-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unix Basics</title>
		<link>http://www.glotzfisch.de/unix-basics/</link>
		<comments>http://www.glotzfisch.de/unix-basics/#comments</comments>
		<pubDate>Mon, 14 Jan 2008 18:14:16 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Unix]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/2008.02.25/unix-basics/</guid>
		<description><![CDATA[Au weia, Jahre kein Unix gesehen und dann das&#8230;
Mache eine Sicherheitskopie von allen html files in einem Verzeichnis, natürlich mit Unterverzeichnissen, aber nimm nicht den ganzen anderen Müll mit&#8230; vielleicht geht es ja auch schneller, aber das funzt:
  find . -name '*.html' &#124; pax -wdx ustar &#124; gzip &#62; Htmlfiles.tgz
Finde HTML und PHP:
find . [...]]]></description>
			<content:encoded><![CDATA[<p>Au weia, Jahre kein Unix gesehen und dann das&#8230;</p>
<p>Mache eine Sicherheitskopie von allen html files in einem Verzeichnis, natürlich mit Unterverzeichnissen, aber nimm nicht den ganzen anderen Müll mit&#8230; vielleicht geht es ja auch schneller, aber das funzt:</p>
<p><code>  find . -name '*.html' | pax -wdx ustar | gzip &gt; Htmlfiles.tgz</code></p>
<p>Finde HTML und PHP:</p>
<p><code>find . -name '*.html' -o -name '*.php'</code></p>
<p>Count files</p>
<p><code>  find . -name '*.html' -o -name '*.php' | wc -l</code></p>
<p><code>  find . -type f | wc -l</code></p>
<p>Only list the directories in the current directory.</p>
<p><code>  ls -d */</code></p>
<p>Find Members of a group??  in php it&#8217;s quite simple&#8230;</p>
<p><code>  $file["group"]["members"]</code></p>
<p>in unix?? maybe something like</p>
<p><code>  more /etc/group | grep groupname</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/unix-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &gt; CleanString</title>
		<link>http://www.glotzfisch.de/php-cleanstring/</link>
		<comments>http://www.glotzfisch.de/php-cleanstring/#comments</comments>
		<pubDate>Tue, 07 Aug 2007 09:50:05 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/php-cleanstring/</guid>
		<description><![CDATA[This function strips all unwanted characters from a given filename. Only alphanumeric characters, . and &#8211; are allowed.
  function cleanString($filename) {
    return ereg_replace("[^-[:alnum:].+]","",$filename);
  }
oder, um auch z.B. chinesische Zeichen zu verbieten&#8230;

function cleanString($wild) {
   $filename = ereg_replace("[^-[a-zA-Z0-9].+]","",$wild);
    return $filename;
}

]]></description>
			<content:encoded><![CDATA[<p>This function strips all unwanted characters from a given filename. Only alphanumeric characters, . and &#8211; are allowed.</p>
<pre>  function cleanString($filename) {
    return ereg_replace("[^-[:alnum:].+]","",$filename);
  }</pre>
<p>oder, um auch z.B. chinesische Zeichen zu verbieten&#8230;</p>
<pre>
function cleanString($wild) {
   $filename = ereg_replace("[^-[a-zA-Z0-9].+]","",$wild);
    return $filename;
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/php-cleanstring/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &gt; Directory Functions</title>
		<link>http://www.glotzfisch.de/php-directory-functions/</link>
		<comments>http://www.glotzfisch.de/php-directory-functions/#comments</comments>
		<pubDate>Mon, 14 May 2007 09:53:45 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/php-directory-functions/</guid>
		<description><![CDATA[Read a directory and output files
 $list_ignore = array
         ('.','..','images','Thumbs.db','index.php','.htaccess','.htpasswd');
 $handle=opendir ('.');
 while (false !== ($file = readdir ($handle))) {
   if (!in_array($file,$list_ignore)) $out[filemtime($file)] =
       $file."&#60;/td&#62;&#60;td&#62;".date("d.m.Y",filemtime($file));
 }
 closedir($handle);
 if ($out)
 {
  krsort ($out);
  echo "&#60;table border=0&#62;";
  foreach($out [...]]]></description>
			<content:encoded><![CDATA[<p>Read a directory and output files</p>
<pre> $list_ignore = array
         ('.','..','images','Thumbs.db','index.php','.htaccess','.htpasswd');
 $handle=opendir ('.');
 while (false !== ($file = readdir ($handle))) {
   if (!in_array($file,$list_ignore)) $out[filemtime($file)] =
       $file."&lt;/td&gt;&lt;td&gt;".date("d.m.Y",filemtime($file));
 }
 closedir($handle);
 if ($out)
 {
  krsort ($out);
  echo "&lt;table border=0&gt;";
  foreach($out as $item) {
	echo "&lt;tr&gt;&lt;td&gt;&lt;a href=\"$item\"&gt;$item&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt; \n";
  }
 }</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/php-directory-functions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &gt; string2array using a &#8220;template&#8221;</title>
		<link>http://www.glotzfisch.de/php-string2array-using-a-template/</link>
		<comments>http://www.glotzfisch.de/php-string2array-using-a-template/#comments</comments>
		<pubDate>Mon, 14 May 2007 09:45:13 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/php-string2array-using-a-template/</guid>
		<description><![CDATA[divide a string with a template. the &#8220;template dividers&#8221; are the keys for the output  array.
  &#60;?PHP
  function string2array ($string, $template){
    #search defined dividers
    preg_match_all ("&#124;%(.+)%&#124;U", $template, $template_matches);
    #replace dividers with "real dividers"
    $template = preg_replace ("&#124;%(.+)%&#124;U", "(.+)", $template);
  [...]]]></description>
			<content:encoded><![CDATA[<p>divide a string with a template. the &#8220;template dividers&#8221; are the keys for the output  array.</p>
<pre>  &lt;?PHP
  function string2array ($string, $template){
    #search defined dividers
    preg_match_all ("|%(.+)%|U", $template, $template_matches);
    #replace dividers with "real dividers"
    $template = preg_replace ("|%(.+)%|U", "(.+)", $template);
    #search matches
    preg_match ("|" . $template . "|", $string, $string_matches);
    #[template_match] =&gt; $string_match
    foreach ($template_matches[1] as $key =&gt; $value){
     $output[$value] = $string_matches[($key + 1)];
    }
    return $output;
  }

  $string1 = 'www.something.com 66.196.91.121 - -
  [01/Sep/2005:04:20:39 +0200] "GET /robots.txt HTTP/1.0" 200 49 "-"';
  $string2= '  -  \[: \] "  "   ""';

  print_r (string2array ($string1, $string2));

  /*
  Array

  (
  [<span class="createlink">ServerAddress</span>] =&gt; www.something.com
  [IP] =&gt; 66.196.91.121
  [User] =&gt; -
  [Date] =&gt; 01/Sep/2005
  [Time] =&gt; 04:20:39
  [<span class="createlink">TimeZone</span>] =&gt; +0200
  [Method] =&gt; GET
  [Request] =&gt; /robots.txt
  [Protocol] =&gt; HTTP/1.0
  [<span class="createlink">ServerCode</span>] =&gt; 200
  [Bytes] =&gt; 49
  [Referer] =&gt; -
  )
  */
 ?&gt;</pre>
<p>found on <a href="http://de.php.net/manual/en/function.split.php" class="urllink">http://de.php.net/manual/en/function.split.php</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/php-string2array-using-a-template/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &gt; a menu library</title>
		<link>http://www.glotzfisch.de/php-a-menu-library/</link>
		<comments>http://www.glotzfisch.de/php-a-menu-library/#comments</comments>
		<pubDate>Tue, 27 Mar 2007 09:48:00 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/php-a-menu-library/</guid>
		<description><![CDATA[ My favorite Menu that I adapted for the new ESO home page and some of its adaptations:
A function that finally gives me the complete path to a menu item. Not just the path to the parent as getPath&#8230; here we go:
 # builds total path (including the item itself...)
 # call $m-&#62;buildTotalPath($m-&#62;menu, array())
 # [...]]]></description>
			<content:encoded><![CDATA[<p> My favorite <a href="http://www.ulf-wendel.de/projekte/menu/index.php" class="urllink">Menu</a> that I adapted for the new ESO home page and some of its a<span class="wikilink">daptations:</span></p>
<p>A function that finally gives me the complete path to a menu item. Not just the path to the parent as getPath&#8230; here we go:</p>
<pre> # builds total path (including the item itself...)
 # call $m-&gt;buildTotalPath($m-&gt;menu, array())
 # use $m-&gt;pathtohere

 function buildTotalPath($menu, $path, $level=0) {
    // loop through the (sub)menu
    foreach ($menu as $node_id =&gt; $node) {
        // save the path of the current node in the urlmap
	##!!! include current node
	$path[$level] = $node_id;
	$this-&gt;pathtohere[$node["url"]] = $path;
        // if current node has a submenu
        if ($node["sub"]) {
           // continue search recursivly -
	   $this-&gt;buildTotalPath($node["sub"], $path, $level+1);
        }
    }
    return true;
 } 

 # get path including item itself.....
 function getTotalPath() {
    $this-&gt;buildTotalPath($this-&gt;menu, array());
    $this-&gt;current_url = $this-&gt;getCurrentURL();
    while ($this-&gt;current_url &amp;&amp;
           !isset($this-&gt;pathtohere[$this-&gt;current_url]) &amp;&amp;
           !isset($this-&gt;pathtohere[$this-&gt;current_url.".html"])) {
	$this-&gt;current_url = substr($this-&gt;current_url, 0, -1);
    }
    if (isset($this-&gt;pathtohere[$this-&gt;current_url])) {
       $myvar = $this-&gt;current_url;
    } else {
       $myvar = $this-&gt;current_url.".html";
    }
    return $this-&gt;pathtohere[$myvar];
 }</pre>
<p>thanks to <a href="http://www.ulf-wendel.de/projekte/menu/index.php" class="urllink">Ulf</a> for providing the idea and the source code of the menu functions!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/php-a-menu-library/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP &gt; Quote smart&#8230;</title>
		<link>http://www.glotzfisch.de/php-quote-smart/</link>
		<comments>http://www.glotzfisch.de/php-quote-smart/#comments</comments>
		<pubDate>Thu, 11 Jan 2007 09:46:32 +0000</pubDate>
		<dc:creator>Gabi</dc:creator>
				<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.glotzfisch.de/php-quote-smart/</guid>
		<description><![CDATA[found at php.net, prevents SQL Attacks through entry fields
 function quote_smart($value)
 {
   // Stripslashes
   if (get_magic_quotes_gpc()) {
       $value = stripslashes($value);
   }
   // Quote if not a number or a numeric string
   if (!is_numeric($value)) {
      [...]]]></description>
			<content:encoded><![CDATA[<p>found at <a href="http://de.php.net/manual/en/function.mysql-real-escape-string.php" class="urllink">php.net</a>, prevents SQL Attacks through entry fields</p>
<pre> function quote_smart($value)
 {
   // Stripslashes
   if (get_magic_quotes_gpc()) {
       $value = stripslashes($value);
   }
   // Quote if not a number or a numeric string
   if (!is_numeric($value)) {
       $value = "'" . mysql_real_escape_string($value) . "'";
   }
   return $value;
 }</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.glotzfisch.de/php-quote-smart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
