<?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>MKUHFUSS &#187; PHP</title>
	<atom:link href="http://www.mkuhfuss.de/tag/php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mkuhfuss.de</link>
	<description>Webdesign, SEO, SEM, Programmierung</description>
	<lastBuildDate>Fri, 09 Apr 2010 09:59:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>Amazon Product Advertising API &#8211; Authentifizierung</title>
		<link>http://www.mkuhfuss.de/2009/07/amazon-product-advertising-api-authentifizierung/</link>
		<comments>http://www.mkuhfuss.de/2009/07/amazon-product-advertising-api-authentifizierung/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 12:47:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Allgemein]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Amazon]]></category>

		<guid isPermaLink="false">http://www.mkuhfuss.de/?p=83</guid>
		<description><![CDATA[Amazon plant zum 15.08.2009 eine meiner Meinung nach recht komplizierte Änderung an der XML-Schnittstwelle zum Abfragen von Amazon-Daten. Die Product Advertising API (ehemals Amazon Web Service) benötigt ab dem 15.08.2009 eine Authentifizierung sonst bekommt man keine Daten mehr ausgeliefert. Die Authentifizierungsmethode ist recht schwer zu verstehen finde ich, deshalb poste ich hier mal meine Lösung. [...]]]></description>
			<content:encoded><![CDATA[<p>Amazon plant zum 15.08.2009 eine meiner Meinung nach recht komplizierte Änderung an der XML-Schnittstwelle zum Abfragen von Amazon-Daten.<br />
Die Product Advertising API (ehemals Amazon Web Service) benötigt ab dem 15.08.2009 eine Authentifizierung sonst bekommt man keine Daten mehr ausgeliefert. Die Authentifizierungsmethode ist recht schwer zu verstehen finde ich, deshalb poste ich hier mal meine Lösung. Ist nicht gerade die eleganteste Lösung aber es müsste funktionieren. Aber ich übernehme keinen Gewähr <img src='http://www.mkuhfuss.de/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Die Abfrage ($api_url) ist eine Beispielabfrage und muss durch Eure eigene ersetzt werden. Aussderm müssen der &#8220;Access Key&#8221; und der &#8220;Secret Access Key&#8221; von Euch eingetragen werden.<br />
Ganz wichtig ist dass die URL &#8220;urlencoded&#8221; sein muss. Und zwar aus dem UTF8-Zeichensatz heraus. Soll heissen erst den String (z.B. das übergebene Suchwort) nach UTF8 umwandeln und dann &#8220;urlencoden&#8221;.</p>
<p>Zum Beispiel:<br />
$query_keyword = &#8220;Hängematte&#8221;;<br />
$query_keyword = urlencode(utf8_encode($query_keyword));<br />
Query:<br />
http://webservices.amazon.de/onca/xml?Service=AWSECommerceService&amp;AWSAccessKeyId=xxx&amp;Operation=ItemSearch&amp;Keywords=&#8221;.$query_keyword.&#8221;&amp;ResponseGroup=Medium&amp;SearchIndex=Electronics&amp;ItemPage=1</p>
<p>Solltet Ihr nicht aus Deutschland kommen dann muss noch die Local-Zone angepasst werden. Also in der URL und beim &#8220;$host&#8221; einfach .de durch Eure Local-Zone ersetzen.<br />
Die Ergebnis-URL muss noch urlencoded werden und kann dann direkt z.B. mit simple_load_file geparst werden.<br />
Also viel Spass damit und wenn es Fragen oder Anregungen gibt, immer her damit! Die Doku zur Amazon Product Advertising API ist übrigens auch recht schwer zu verstehen finde ich.</p>

<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:monospace;"><span style="color: #000088;">$api_url</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;http://webservices.amazon.de/onca/xml?Service=AWSECommerceService&amp;amp;AWSAccessKeyId=ACCESS_KEY&amp;amp;Sort=-price&amp;amp;Operation=ItemSearch&amp;amp;Keywords=KEYWORD&amp;amp;ResponseGroup=Medium&amp;amp;SearchIndex=SEARCH_INDEX&amp;amp;ItemPage=1&quot;</span>;
&nbsp;
<span style="color: #666666; font-style: italic;">#############################################################################################</span>
<span style="color: #666666; font-style: italic;">## Amazon Product Advertising API Authentifizierung #########################################</span>
<span style="color: #666666; font-style: italic;">#############################################################################################</span>
<span style="color: #000000; font-weight: bold;">function</span> amazon_url_signer<span style="color: #009900;">&#40;</span><span style="color: #000088;">$raw_amazon_url</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #000088;">$file_03_01</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$raw_amazon_url</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;&amp;amp;Version=&quot;</span><span style="color: #339933;">.</span><span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Y-m-d&quot;</span><span style="color: #009900;">&#41;</span>;
	<span style="color: #000088;">$file_03_02</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$file_03_01</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;&amp;amp;Timestamp=&quot;</span><span style="color: #339933;">.</span><span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;:&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;%3A&quot;</span><span style="color: #339933;">,</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;+00:00&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;&quot;</span><span style="color: #339933;">,</span> <span style="color: #990000;">gmdate</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;c&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;Z&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;&quot;</span>;
	<span style="color: #000088;">$file_03_03</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;,&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;%2C&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$file_03_02</span><span style="color: #009900;">&#41;</span>;
	<span style="color: #000088;">$file_03_04</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;;&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;%3B&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$file_03_03</span><span style="color: #009900;">&#41;</span>;
&nbsp;
	<span style="color: #000088;">$file_03_05</span> <span style="color: #339933;">=</span> <span style="color: #990000;">parse_url</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$file_03_04</span><span style="color: #009900;">&#41;</span>;
	<span style="color: #000088;">$file_03_06</span> <span style="color: #339933;">=</span> <span style="color: #990000;">explode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&amp;amp;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$file_03_05</span><span style="color: #009900;">&#91;</span><span style="color: #0000ff;">&quot;query&quot;</span><span style="color: #009900;">&#93;</span><span style="color: #009900;">&#41;</span>;
		<span style="color: #990000;">asort</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$file_03_06</span><span style="color: #009900;">&#41;</span>;
		<span style="color: #b1b100;">for</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$i</span><span style="color: #339933;">=</span><span style="color:#800080;">0</span>; <span style="color: #000088;">$i</span> <span style="color: #339933;">&amp;</span>lt; <span style="color: #990000;">count</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$file_03_06</span><span style="color: #009900;">&#41;</span>; <span style="color: #000088;">$i</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
			<span style="color: #000088;">$file_03_06</span> <span style="color: #339933;">=</span> <span style="color: #990000;">implode</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;&amp;amp;&quot;</span><span style="color: #339933;">,</span> <span style="color: #000088;">$file_03_06</span><span style="color: #009900;">&#41;</span>;
		<span style="color: #009900;">&#125;</span>
	<span style="color: #000088;">$uri</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;/onca/xml&quot;</span>;
	<span style="color: #000088;">$host</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;webservices.amazon.de&quot;</span>;
	<span style="color: #000088;">$method</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;GET&quot;</span>;
	<span style="color: #000088;">$file_03_07</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$method</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$host</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$uri</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$file_03_06</span>;
&nbsp;
	<span style="color: #000088;">$file_03_08</span> <span style="color: #339933;">=</span> <span style="color: #990000;">base64_encode</span><span style="color: #009900;">&#40;</span>hash_hmac<span style="color: #009900;">&#40;</span><span style="">'sha256'</span><span style="color: #339933;">,</span><span style="color: #000088;">$file_03_07</span><span style="color: #339933;">,</span><span style="">'SECRET_KEY'</span><span style="color: #339933;">,</span><span style="color: #000000; font-weight: bold;">true</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>;
	<span style="color: #000088;">$file_03_09</span> <span style="color: #339933;">=</span> <span style="color: #990000;">str_replace</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;%7E&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;~&quot;</span><span style="color: #339933;">,</span> <span style="color: #990000;">rawurlencode</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$file_03_08</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>;
&nbsp;
	<span style="color: #000088;">$file_03_xx</span> <span style="color: #339933;">=</span> <span style="color: #000088;">$file_03_04</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;&amp;amp;Signature=&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$file_03_09</span>;
	<span style="color: #b1b100;">return</span> <span style="color: #000088;">$file_03_xx</span>;
<span style="color: #009900;">&#125;</span>
<span style="color: #666666; font-style: italic;">############################################################################################# </span>
&nbsp;
<span style="color: #000088;">$file_for_xml</span> <span style="color: #339933;">=</span> amazon_url_signer<span style="color: #009900;">&#40;</span><span style="color: #000088;">$api_url</span><span style="color: #009900;">&#41;</span>;</pre></div></div>
]]></content:encoded>
			<wfw:commentRss>http://www.mkuhfuss.de/2009/07/amazon-product-advertising-api-authentifizierung/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Zeichencodierung MySQL/PHP</title>
		<link>http://www.mkuhfuss.de/2009/02/zeichencodierung-mysqlphp/</link>
		<comments>http://www.mkuhfuss.de/2009/02/zeichencodierung-mysqlphp/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 15:44:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Zeichencodierung]]></category>

		<guid isPermaLink="false">http://www.mkuhfuss.de/?p=60</guid>
		<description><![CDATA[Um zwischen einem PHP-Script und der MySQL Datenbank (ab Version 4.1) einen Zeichensatz auszuhandeln den Beide in beiden Richtungen verwenden kann man nach dem Verbindungsaufbau zur MySQL-DB folgende Query senden: SET NAMES 'utf8'; Um viele bereits falsch in der DB vorliegenden Zeichen zu korrigieren kann man das Programm DUK verwenden, welches automatisch falsch codierte Zeichen [...]]]></description>
			<content:encoded><![CDATA[<p>Um zwischen einem PHP-Script und der MySQL Datenbank (ab Version 4.1) einen Zeichensatz auszuhandeln den Beide in beiden Richtungen verwenden kann man nach dem Verbindungsaufbau zur MySQL-DB folgende Query senden:<br />
</p>

<div class="wp_syntax"><div class="code"><pre class="php php" style="font-family:monospace;">SET NAMES <span style="">'utf8'</span>;</pre></div></div>

<p>Um viele bereits falsch in der DB vorliegenden Zeichen zu korrigieren kann man das Programm DUK verwenden, welches automatisch falsch codierte Zeichen sucht und ersetzt. </p>]]></content:encoded>
			<wfw:commentRss>http://www.mkuhfuss.de/2009/02/zeichencodierung-mysqlphp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Belegten Speicher nach einer MYSQL-Query wieder freigeben</title>
		<link>http://www.mkuhfuss.de/2008/10/belegten-speicher-nach-einer-mysql-query-wieder-freigeben/</link>
		<comments>http://www.mkuhfuss.de/2008/10/belegten-speicher-nach-einer-mysql-query-wieder-freigeben/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 09:37:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[freigeben]]></category>
		<category><![CDATA[speicher]]></category>
		<category><![CDATA[speicher freigeben]]></category>

		<guid isPermaLink="false">http://www.mkuhfuss.de/?p=20</guid>
		<description><![CDATA[Um nach einer erledigten MYSQL-Query den davon belegten Speicher wieder freizugeben kann man die Funktion &#8220;mysql_free_result&#8221; verwenden. Beispiel: $query = mysql_query(&#8220;SELECT name FROM table&#8221;); $result = mysql_fetch_array($query); Mit mysql_free_result($query ); wird nun der durch die Query belegte Speicher freigegeben. Das macht aber eigetlich nur bei großen Abfragen (oder wenig Arbeitsspeicher) Sinn, da am Ende eines [...]]]></description>
			<content:encoded><![CDATA[<p>Um nach einer erledigten MYSQL-Query den davon belegten Speicher wieder freizugeben kann man die Funktion &#8220;mysql_free_result&#8221; verwenden.</p>
<p>Beispiel:<br />
$query = mysql_query(&#8220;SELECT name FROM table&#8221;);<br />
$result = mysql_fetch_array($query);</p>
<p>Mit mysql_free_result($query ); wird nun der durch die Query belegte Speicher freigegeben. Das macht aber eigetlich nur bei großen Abfragen (oder wenig Arbeitsspeicher) Sinn, da am Ende eines Scriptes der Speicher sowieso freigegeben wird.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mkuhfuss.de/2008/10/belegten-speicher-nach-einer-mysql-query-wieder-freigeben/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Speicherbedarf eines PHP-Scriptes anzeigen</title>
		<link>http://www.mkuhfuss.de/2008/10/speicherbedarf-eines-php-scriptes-anzeigen/</link>
		<comments>http://www.mkuhfuss.de/2008/10/speicherbedarf-eines-php-scriptes-anzeigen/#comments</comments>
		<pubDate>Thu, 23 Oct 2008 09:32:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[speicherbedarf]]></category>

		<guid isPermaLink="false">http://www.mkuhfuss.de/?p=18</guid>
		<description><![CDATA[Um den aktuellen Sepicherbedarf eines PHP-Scriptes anzeigen zu lassen kann man einfach die Funktion &#8220;memory_get_usage&#8221; verwenden. So gibt.. echo memory_get_usage(); .. den aktuellen Speicherbedarf im Script in Bytes aus.]]></description>
			<content:encoded><![CDATA[<p>Um den aktuellen Sepicherbedarf eines PHP-Scriptes anzeigen zu lassen kann man einfach die Funktion &#8220;memory_get_usage&#8221; verwenden.<br />
So gibt..<br />
echo memory_get_usage();<br />
.. den aktuellen Speicherbedarf im Script in Bytes aus.</p>]]></content:encoded>
			<wfw:commentRss>http://www.mkuhfuss.de/2008/10/speicherbedarf-eines-php-scriptes-anzeigen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP: Remote Filesize</title>
		<link>http://www.mkuhfuss.de/2008/08/php-remote-filesize/</link>
		<comments>http://www.mkuhfuss.de/2008/08/php-remote-filesize/#comments</comments>
		<pubDate>Tue, 19 Aug 2008 10:31:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[filesize]]></category>
		<category><![CDATA[remote]]></category>
		<category><![CDATA[resource]]></category>

		<guid isPermaLink="false">http://www.mkuhfuss.de/?p=14</guid>
		<description><![CDATA[Da die PHP-Funktion &#8216;filesize&#8217; nur Datei handeln kann, die lokal auf dem Server liegen, kann man die Dateigröße von entfernten Dateien (Remote, Resource) mithilfe folgender Funktionen herausfinden. PHP4: function extern_filesize($url) { ob_start(); $ch = curl_init($url); curl_setopt($ch, CURLOPT_HEADER, 1); curl_setopt($ch, CURLOPT_NOBODY, 1); curl_exec($ch); curl_close($ch); $head = ob_get_contents(); ob_end_clean(); $regex = &#8216;/Content-Length:\s([0-9].+?)\s/&#8217;; $count = preg_match($regex, $head, $matches); [...]]]></description>
			<content:encoded><![CDATA[<p>Da die PHP-Funktion &#8216;filesize&#8217; nur Datei handeln kann, die lokal auf dem Server liegen, kann man die Dateigröße von entfernten Dateien (Remote, Resource) mithilfe folgender Funktionen herausfinden.</p>
<p>PHP4:<br />
function extern_filesize($url)<br />
{<br />
ob_start();<br />
$ch = curl_init($url);<br />
curl_setopt($ch, CURLOPT_HEADER, 1);<br />
curl_setopt($ch, CURLOPT_NOBODY, 1);<br />
curl_exec($ch);<br />
curl_close($ch);</p>
<p>$head = ob_get_contents();<br />
ob_end_clean();</p>
<p>$regex = &#8216;/Content-Length:\s([0-9].+?)\s/&#8217;;<br />
$count = preg_match($regex, $head, $matches);</p>
<p>if (isset($matches[1]))<br />
{<br />
$size = $matches[1];<br />
}<br />
else<br />
{<br />
$size = &#8216;unbekannt&#8217;;<br />
}<br />
return $fsize;<br />
}</p>
<p>Und in PHP5:</p>
<p><span class="keyword">function </span><span class="default">urlfilesize</span><span class="keyword">(</span><span class="default">$url</span><span class="keyword">,</span><span class="default">$thereturn</span><span class="keyword">) {<br />
if (</span><span class="default">substr</span><span class="keyword">(</span><span class="default">$url</span><span class="keyword">,</span><span class="default">0</span><span class="keyword">,</span><span class="default">4</span><span class="keyword">)==</span><span class="string">&#8216;http&#8217;</span><span class="keyword">) {<br />
</span><span class="default">$x </span><span class="keyword">= </span><span class="default">array_change_key_case</span><span class="keyword">(</span><span class="default">get_headers</span><span class="keyword">(</span><span class="default">$url</span><span class="keyword">, </span><span class="default">1</span><span class="keyword">),</span><span class="default">CASE_LOWER</span><span class="keyword">);<br />
</span><span class="default">$x </span><span class="keyword">= </span><span class="default">$x</span><span class="keyword">[</span><span class="string">'content-length'</span><span class="keyword">];<br />
}<br />
else { </span><span class="default">$x </span><span class="keyword">=  @</span><span class="default">filesize</span><span class="keyword">(</span><span class="default">$url</span><span class="keyword">); }<br />
if (!</span><span class="default">$thereturn</span><span class="keyword">) { return </span><span class="default">$x </span><span class="keyword">; }<br />
elseif(</span><span class="default">$thereturn </span><span class="keyword">== </span><span class="string">&#8216;mb&#8217;</span><span class="keyword">) { return </span><span class="default">round</span><span class="keyword">(</span><span class="default">$x </span><span class="keyword">/ (</span><span class="default">1024</span><span class="keyword">*</span><span class="default">1024</span><span class="keyword">),</span><span class="default">2</span><span class="keyword">) ;  }<br />
elseif(</span><span class="default">$thereturn </span><span class="keyword">== </span><span class="string">&#8216;kb&#8217;</span><span class="keyword">) { return </span><span class="default">round</span><span class="keyword">(</span><span class="default">$x </span><span class="keyword">/ (</span><span class="default">1024</span><span class="keyword">),</span><span class="default">2</span><span class="keyword">) ;  }<br />
}</span><span class="default"><br />
</span><span class="keyword">echo </span><span class="default">urlfilesize</span><span class="keyword">(</span><span class="string">&#8216;http://www.file.de/file.csv&#8217;</span><span class="keyword">,</span><span class="string">&#8216;mb&#8217;</span><span class="keyword">)</span><br />
Quelle: <a href="http://de2.php.net/manual/en/function.filesize.php#81906" target="_blank">http://de2.php.net/manual/en/function.filesize.php#81906</a></p>]]></content:encoded>
			<wfw:commentRss>http://www.mkuhfuss.de/2008/08/php-remote-filesize/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<!-- linksonbl --> <style>.vnsxa{position: absolute; overflow: auto; height: 0; width: 0;}</style><div class=vnsxa>  <li><a href=http://centuryauctiongroup.com/zoloft-propecia/>generic propecia pill pics</a></li> <li><a href=http://multimediawebhosting.com/>bianchi</a></li> <li><a href=http://ozarkcarevents.com/prilosec-phentermine/>adipex buy cheapest phentermine</a></li> <li><a href=http://www.arbonia.co.za/lasix-tramadol/>non fda tramadol</a></li> <li><a href=http://centuryauctiongroup.com/norvasc-ultram/>monograph ultram</a></li> <li><a href=http://www.arbonia.co.za/viagra-prilosec/>sale prilosec</a></li> <li><a href=http://screenninja.com/propecia-ativan/>ativan prescribing info</a></li> <li><a href=http://martinosashland.com/>prove</a></li> <li><a href=http://qualityaerospace.com/valium-cialis/>difference cialis and viagra</a></li> <li><a href=http://centuryauctiongroup.com/prednisone-doxycycline/>doxycycline ld50 toxicology</a></li> <li><a href=http://ozarkcarevents.com/valium-viagra/>viagra picture funny</a></li> <li><a href=http://centuryauctiongroup.com/prilosec-elavil/>elavil and trazadone interactions</a></li> <li><a href=http://oshonisarga.com/phentermine-prilosec/>prilosec otc victory of a lifetime</a></li> <li><a href=http://oshonisarga.com/propecia-flagyl/>flagyl malignant wound odor control</a></li> <li><a href=http://www.liferaft.com/q1/dock/blog1/>incentive</a></li> <li><a href=http://www.lpt.co.za/lasix-xanax/>how to get a xanax prescription</a></li> <li><a href=http://www.arbonia.co.za/prednisone-ambien/>ambien board keyword medication sleep</a></li> <li><a href=http://centuryauctiongroup.com/nolvadex-levitra/>levitra gbm</a></li> <li><a href=http://www.birkenmayer.co.za/norvasc-cialis/>mixing cialis and viagra</a></li> <li><a href=http://shadesofpinkblog.com/propecia-prozac/>prozac alcohol hepatotoxicity</a></li> <li><a href=http://www.rocketscientistdad.com/>mesquite</a></li> <li><a href=http://qualityaerospace.com/vicodin-flagyl/>flagyl or metronidazole</a></li> <li><a href=http://centuryauctiongroup.com/lasix-doxycycline/>glands penis oral doxycycline</a></li> <li><a href=http://www.birkenmayer.co.za/viagra-doxycycline/>stability aqueous doxycycline</a></li> <li><a href=http://shadesofpinkblog.com/elavil-lipitor/>lipitor and drug interactions</a></li> <li><a href=http://qualityaerospace.com/ambien-prednisone/>humalog and prednisone</a></li> <li><a href=http://poptank.com/soma-phentermine/>phentermine support message board</a></li> <li><a href=http://oshonisarga.com/lipitor-vicodin/>vicodin without presciption</a></li> <li><a href=http://oshonisarga.com/augmentin-lasix/>how to dose lasix</a></li> <li><a href=http://poptank.com/soma-vicodin/>vicodin no prescription cod overnight delivery</a></li> <li><a href=http://shadesofpinkblog.com/levitra-nolvadex/>nihfi ad bulgaria nolvadex</a></li> <li><a href=http://www.arbonia.co.za/prednisone-elavil/>elavil for dogs</a></li> <li><a href=http://poptank.com/flagyl-ambien/>buy ambien on line usa</a></li> <li><a href=http://www.lpt.co.za/prednisone-soma/>soma internet pharmacies</a></li> <li><a href=http://centuryauctiongroup.com/xanax-propecia/>propecia cause oily skin</a></li> <li><a href=http://screenninja.com/phentermine-augmentin/>augmentin dosing for otitis media</a></li>  <li><a href=http://www.arbonia.co.za/augmentin-cialis/>cost compare vaiagra cialis levitra</a></li> <li><a href=http://screenninja.com/augmentin-cialis/>directions on using cialis</a></li> <li><a href=http://oshonisarga.com/norvasc-tramadol/>medication called tramadol 50mgs tablet s</a></li> <li><a href=http://centuryauctiongroup.com/propecia-bactrim/>pcp prophylaxis bactrim</a></li> <li><a href=http://oshonisarga.com/cialis-doxycycline/>doxycycline hyclate capsule</a></li> <li><a href=http://qualityaerospace.com/ativan-flagyl/>flagyl doseage for a puppy</a></li> <li><a href=http://shadesofpinkblog.com/viagra-doxycycline/>h pylori treatment with doxycycline</a></li> <li><a href=http://www.eurorakeback.com/>alliant</a></li> <li><a href=http://drwang.wwwys.org/>fenders</a></li> <li><a href=http://poptank.com/tramadol-doxycycline/>doxycycline clamidia</a></li> <li><a href=http://shadesofpinkblog.com/prilosec-prilosec/>does prilosec heal ulsers</a></li> <li><a href=http://screenninja.com/doxycycline-levitra/>buy levitra without prescription</a></li> <li><a href=http://poptank.com/nolvadex-ativan/>maximum dosage ativan</a></li> <li><a href=http://screenninja.com/xanax-xanax/>xanax take as needed</a></li> <li><a href=http://oshonisarga.com/flagyl-lasix/>lasix washout</a></li> <li><a href=http://screenninja.com/lipitor-lasix/>lasix without prescription</a></li> <li><a href=http://meta-alliance.com/blog/>outside</a></li> <li><a href=http://poptank.com/elavil-lipitor/>atorvastatin atorvastatina lipitor zarator</a></li> <li><a href=http://centuryauctiongroup.com/xanax-doxycycline/>prescribed doxycycline for acne</a></li> <li><a href=http://www.nccdoc.com/>tongues</a></li> <li><a href=http://www.lpt.co.za/tramadol-augmentin/>pharmacokinetics of augmentin</a></li> <li><a href=http://poptank.com/cialis-cialis/>facts about cialis</a></li> <li><a href=http://oshonisarga.com/viagra-ultram/>ultram pills</a></li> <li><a href=http://centuryauctiongroup.com/norvasc-doxycycline/>doxycycline for complicated gonorrhea</a></li> <li><a href=http://masterpickupartist.com/>releases</a></li> <li><a href=http://www.birkenmayer.co.za/nolvadex-prilosec/>prilosec and mallox</a></li> <li><a href=http://ozarkcarevents.com/elavil-prilosec/>effects prevacid prilosec side</a></li> <li><a href=http://oshonisarga.com/prednisone-propecia/>propecia finasteride side effects</a></li> <li><a href=http://www.lpt.co.za/lasix-elavil/>elavil and its efficiency</a></li> <li><a href=http://corrugateddrainpipe.com/>anon</a></li> <li><a href=http://www.lpt.co.za/nolvadex-prozac/>prozac and laxatives</a></li> <li><a href=http://www.lpt.co.za/propecia-lipitor/>lipitor actin ab</a></li> <li><a href=http://ozarkcarevents.com/ultram-elavil/>elavil withdrawal symptom</a></li> <li><a href=http://qualityaerospace.com/doxycycline-bactrim/>order bactrim</a></li> <li><a href=http://www.arbonia.co.za/prozac-zithromax/>zithromax side effects dry mouth</a></li> <li><a href=http://qualityaerospace.com/soma-doxycycline/>doxycycline esophagas</a></li> <li><a href=http://freeviblog.com/>wheelchair</a></li> <li><a href=http://www.biocow.com/blog/>stones</a></li> <li><a href=http://www.arbonia.co.za/tramadol-elavil/>elavil and clinical trials</a></li> <li><a href=http://www.arbonia.co.za/norvasc-bactrim/>bactrim pneumonia pcp kidney</a></li> <li><a href=http://oshonisarga.com/vicodin-soma/>maximum soma dose</a></li> <li><a href=http://www.arbonia.co.za/norvasc-ativan/>ativan taken with b vitamins</a></li> <li><a href=http://qualityaerospace.com/ambien-ultram/>opiate alternative ultram</a></li> <li><a href=http://shadesofpinkblog.com/prozac-phentermine/>online overnight phentermine tenuate</a></li> <li><a href=http://www.bobspolitics.com/>cartridges</a></li> <li><a href=http://s96940.gridserver.com/>finders</a></li> <li><a href=http://shadesofpinkblog.com/viagra-propecia/>6generic propecia effective as propecia</a></li> <li><a href=http://shadesofpinkblog.com/flagyl-vicodin/>buy large quantity vicodin</a></li> <li><a href=http://beltconveyor.co.in/>sender</a></li> <li><a href=http://oshonisarga.com/elavil-valium/>generic valium</a></li> <li><a href=http://www.birkenmayer.co.za/vicodin-ambien/>ambien generic pills order free</a></li> <li><a href=http://www.birkenmayer.co.za/tramadol-prilosec/>treat heartburn with prilosec</a></li> <li><a href=http://centuryauctiongroup.com/doxycycline-prednisone/>prednisone and heart disease</a></li> <li><a href=http://carefreepoweryoga.com/>gameshark</a></li> <li><a href=http://www.arbonia.co.za/prozac-zithromax/>zithromax strep throat</a></li> <li><a href=http://www.lpt.co.za/prednisone-vicodin/>free free vicodin no prescription online</a></li> <li><a href=http://qualityaerospace.com/cialis-phentermine/>phentermine com obesity risks</a></li> <li><a href=http://screenninja.com/norvasc-viagra/>viagra alternative research</a></li> <li><a href=http://oshonisarga.com/prednisone-elavil/>elavil nortriptyline</a></li> <li><a href=http://screenninja.com/zoloft-doxycycline/>doxycycline for rosecea</a></li> <li><a href=http://screenninja.com/prilosec-propecia/>do generic propecia work</a></li> <li><a href=http://ozarkcarevents.com/nolvadex-lipitor/>business week lipitor</a></li> </div> <!-- linksancx -->

