<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Simple PHP Schleife</title>
	<atom:link href="http://schnipsel.davidhellmann.com/php/simple-php-schleife/66/feed" rel="self" type="application/rss+xml" />
	<link>http://schnipsel.davidhellmann.com/php/simple-php-schleife/66</link>
	<description>Code Schnipsel (Snippets) zu Wordpress, PHP, HTML, CSS, jQuery</description>
	<lastBuildDate>Mon, 05 Dec 2011 22:32:45 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Andi</title>
		<link>http://schnipsel.davidhellmann.com/php/simple-php-schleife/66/comment-page-1#comment-1074</link>
		<dc:creator>Andi</dc:creator>
		<pubDate>Wed, 03 Mar 2010 15:53:05 +0000</pubDate>
		<guid isPermaLink="false">http://schnipsel.davidhellmann.com/php/simple-php-schleife/66#comment-1074</guid>
		<description>@lorem das geht aber auch einfacher :)

&lt;pre lang=&quot;php&quot; line=&quot;1&quot;&gt;&lt;?php&lt;/pre&gt;
&lt;pre lang=&quot;php&quot; line=&quot;2&quot;&gt;$array = array(&quot;hubbel&quot;,&quot;bubbel&quot;,&quot;dudel&quot;,&quot;dei&quot;);&lt;/pre&gt;
&lt;pre lang=&quot;php&quot; line=&quot;3&quot;&gt;&lt;/pre&gt;
&lt;pre lang=&quot;php&quot; line=&quot;4&quot;&gt;foreach($array as $element): ?&gt;&lt;/pre&gt;
&lt;pre lang=&quot;php&quot; line=&quot;5&quot;&gt;&lt;/pre&gt;
&lt;pre lang=&quot;php&quot; line=&quot;6&quot;&gt;	html geblubber....&lt;/pre&gt;
&lt;pre lang=&quot;php&quot; line=&quot;7&quot;&gt;&lt;/pre&gt;
&lt;pre lang=&quot;php&quot; line=&quot;8&quot;&gt;&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p>@lorem das geht aber auch einfacher :)</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>?php</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>2
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$array</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;hubbel&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;bubbel&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;dudel&quot;</span><span style="color: #339933;">,</span><span style="color: #0000ff;">&quot;dei&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>3
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&nbsp;</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>4
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">foreach</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$array</span> <span style="color: #b1b100;">as</span> <span style="color: #000088;">$element</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">:</span> ?<span style="color: #339933;">&amp;</span>gt<span style="color: #339933;">;</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>5
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&nbsp;</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>6
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">	html geblubber<span style="color: #339933;">....</span></pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>7
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&nbsp;</pre></td></tr></table></div>


<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>8
</pre></td><td class="code"><pre class="php" style="font-family:monospace;">&nbsp;</pre></td></tr></table></div>

]]></content:encoded>
	</item>
	<item>
		<title>By: lorem</title>
		<link>http://schnipsel.davidhellmann.com/php/simple-php-schleife/66/comment-page-1#comment-442</link>
		<dc:creator>lorem</dc:creator>
		<pubDate>Mon, 09 Nov 2009 05:23:31 +0000</pubDate>
		<guid isPermaLink="false">http://schnipsel.davidhellmann.com/php/simple-php-schleife/66#comment-442</guid>
		<description>&lt;pre lang=&quot;php&quot; line=&quot;1&quot;&gt;
&lt;?php
$arr = array(&quot;lorem&quot;, &quot;ipsum&quot;, &quot;dolor&quot;);

$is = sizeof($arr);
for($i=0;$i&lt;$is;$i++){

   //html code oder sonst was hier

}


&lt;/pre&gt;</description>
		<content:encoded><![CDATA[
<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span>?php
<span style="color: #000088;">$arr</span> <span style="color: #339933;">=</span> <span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">&amp;</span>quot<span style="color: #339933;">;</span>lorem<span style="color: #339933;">&amp;</span>quot<span style="color: #339933;">;,</span> <span style="color: #339933;">&amp;</span>quot<span style="color: #339933;">;</span>ipsum<span style="color: #339933;">&amp;</span>quot<span style="color: #339933;">;,</span> <span style="color: #339933;">&amp;</span>quot<span style="color: #339933;">;</span>dolor<span style="color: #339933;">&amp;</span>quot<span style="color: #339933;">;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000088;">$is</span> <span style="color: #339933;">=</span> <span style="color: #990000;">sizeof</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$arr</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</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: #cc66cc;">0</span><span style="color: #339933;">;</span><span style="color: #000088;">$i</span><span style="color: #339933;">&amp;</span>lt<span style="color: #339933;">;</span><span style="color: #000088;">$is</span><span style="color: #339933;">;</span><span style="color: #000088;">$i</span><span style="color: #339933;">++</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
&nbsp;
   <span style="color: #666666; font-style: italic;">//html code oder sonst was hier</span>
&nbsp;
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

]]></content:encoded>
	</item>
</channel>
</rss>

