<?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: PHP program to print alphabet pattern E	</title>
	<atom:link href="https://www.thecodedeveloper.com/php-program-print-alphabet-pattern-e/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.thecodedeveloper.com/php-program-print-alphabet-pattern-e/</link>
	<description>The Code Developer is a Programming Blog.</description>
	<lastBuildDate>Thu, 27 Dec 2018 18:59:17 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.3</generator>
	<item>
		<title>
		By: Full Stack developer		</title>
		<link>https://www.thecodedeveloper.com/php-program-print-alphabet-pattern-e/#comment-40</link>

		<dc:creator><![CDATA[Full Stack developer]]></dc:creator>
		<pubDate>Fri, 29 Dec 2017 17:38:50 +0000</pubDate>
		<guid isPermaLink="false">https://www.thecodedeveloper.com/?p=1762#comment-40</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.thecodedeveloper.com/php-program-print-alphabet-pattern-e/#comment-39&quot;&gt;Raj&lt;/a&gt;.

try this code -
[php]
&#060;?php
echo &#034;&#060;pre&#062;&#034;;
for ($row = 0; $row &#060; 11; $row++) {
    for ($col = 0; $col &#060;= 11; $col++) {
        if (($col == 1 AND $row != 0 AND $row != 10) OR (($row == 0 OR $row == 10) AND $col &#062; 1 AND $col &#060; 9) OR ($row == 4 AND $col &#062; 2 AND $col &#060; 10) OR ($col == 9 AND $row != 0 AND $row != 5 AND $row != 6 AND $row != 7 AND $row != 8 AND $row != 10)) {
            echo &#034;*&#034;;
        } else {
            echo &#034; &#034;;
        }
    }
    echo &#034;&#060;br/&#062;&#034;;
}
echo &#034;&#060;/pre&#062;&#034;;
?&#062;
[/php]]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://www.thecodedeveloper.com/php-program-print-alphabet-pattern-e/#comment-39">Raj</a>.</p>
<p>try this code &#8211;</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php
echo &quot;&lt;pre&gt;&quot;;
for ($row = 0; $row &lt; 11; $row++) {
    for ($col = 0; $col &lt;= 11; $col++) {
        if (($col == 1 AND $row != 0 AND $row != 10) OR (($row == 0 OR $row == 10) AND $col &gt; 1 AND $col &lt; 9) OR ($row == 4 AND $col &gt; 2 AND $col &lt; 10) OR ($col == 9 AND $row != 0 AND $row != 5 AND $row != 6 AND $row != 7 AND $row != 8 AND $row != 10)) {
            echo &quot;*&quot;;
        } else {
            echo &quot; &quot;;
        }
    }
    echo &quot;&lt;br/&gt;&quot;;
}
echo &quot;&lt;/pre&gt;&quot;;
?&gt;
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Raj		</title>
		<link>https://www.thecodedeveloper.com/php-program-print-alphabet-pattern-e/#comment-39</link>

		<dc:creator><![CDATA[Raj]]></dc:creator>
		<pubDate>Mon, 25 Dec 2017 18:19:04 +0000</pubDate>
		<guid isPermaLink="false">https://www.thecodedeveloper.com/?p=1762#comment-39</guid>

					<description><![CDATA[if i want this in small case like e then which pattern i should do help me!!]]></description>
			<content:encoded><![CDATA[<p>if i want this in small case like e then which pattern i should do help me!!</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
