<?xml version="1.0" encoding="ISO-8859-1"?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Zend Framework Forum</title>
		<link>http://www.zfforums.com/</link>
		<description>Zend Framework Forum, PHP</description>
		<language>en</language>
		<lastBuildDate>Thu, 09 Sep 2010 22:08:42 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>http://www.zfforums.com/images/misc/rss.png</url>
			<title>Zend Framework Forum</title>
			<link>http://www.zfforums.com/</link>
		</image>
		<item>
			<title>Filtering non-numeric characters</title>
			<link>http://www.zfforums.com/zend-framework-components-13/model-view-controller-mvc-21/filtering-non-numeric-characters-5508.html</link>
			<pubDate>Thu, 09 Sep 2010 17:46:10 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I'm pretty new to ZF and I'm struggling to get my head around filtering and validation. I have a field in a form for entering telephone...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I'm pretty new to ZF and I'm struggling to get my head around filtering and validation. I have a field in a form for entering telephone numbers (UK only, 11 digits). What I'd like is for all white space and non-numeric characters to be filtered out, then for it to be validated to check if it is 11 digits long, so it would be stored in the database as a string of 11 digits regardless of how the user enters it. For example, if the user enters (1234) 567 8901 then it will be filtered to 12345678901, which would then pass the validation as it is 11 digits long. What I have so far:<br />
<br />
Controller<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">$data&nbsp; = $request-&gt;getPost();<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
if ($form-&gt;isValid($data))<br />
{<br />
&nbsp; &nbsp; &nbsp; &nbsp; $data = $form-&gt;getValues();</code><hr />
</div> Form<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">$telephone&nbsp; -&gt; setLabel('Telephone Number')<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -&gt; addFilter(new Zend_Filter_PregReplace(array('match'=&gt;'/^ $/', 'replace'=&gt;'')))<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -&gt; addValidator(new Zend_Validate_StringLength(11,11))<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -&gt; addErrorMessage(&quot;Please enter a valid telephone number&quot;);</code><hr />
</div> Thanks for any help.</div>

 ]]></content:encoded>
			<category domain="http://www.zfforums.com/zend-framework-components-13/model-view-controller-mvc-21/">Model-View-Controller (MVC)</category>
			<dc:creator>JR1</dc:creator>
			<guid isPermaLink="true">http://www.zfforums.com/zend-framework-components-13/model-view-controller-mvc-21/filtering-non-numeric-characters-5508.html</guid>
		</item>
		<item>
			<title>Avoid submit button value in GET parameters in url</title>
			<link>http://www.zfforums.com/zend-framework-general-discussions-1/general-q-zend-framework-2/avoid-submit-button-value-get-parameters-url-5507.html</link>
			<pubDate>Thu, 09 Sep 2010 16:43:01 GMT</pubDate>
			<description><![CDATA[Hi, 
 
I have a form, created with Zend_Form, with method = GET used for searching records with elements as below: 
[form] 
user name <input...]]></description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I have a form, created with Zend_Form, with method = GET used for searching records with elements as below:<br />
[form]<br />
user name &lt;input type=&quot;text&quot;  name=&quot;uname&quot;&gt;<br />
&lt;input type=&quot;submit&quot; value=&quot;Search&quot; name=&quot;search&quot;&gt;<br />
[/form]<br />
<br />
 After form is submitted all the GET parameters along with submit button value are appearing in the url. <br />
<br />
<a href="http://mysite.com/users/search?uname=abc&amp;search=Search" target="_blank">http://mysite.com/users/search?uname=abc&amp;search=Search</a><br />
<br />
How to avoid submit button value appearing in the url? is custom routing the solution ?</div>

 ]]></content:encoded>
			<category domain="http://www.zfforums.com/zend-framework-general-discussions-1/general-q-zend-framework-2/"><![CDATA[General Q&A on Zend Framework]]></category>
			<dc:creator>adithyanath</dc:creator>
			<guid isPermaLink="true">http://www.zfforums.com/zend-framework-general-discussions-1/general-q-zend-framework-2/avoid-submit-button-value-get-parameters-url-5507.html</guid>
		</item>
		<item>
			<title>zf create project - zend community server</title>
			<link>http://www.zfforums.com/zend-framework-general-discussions-1/general-q-zend-framework-2/zf-create-project-zend-community-server-5506.html</link>
			<pubDate>Thu, 09 Sep 2010 15:25:20 GMT</pubDate>
			<description>Hi, 
 
I decided that I must learn a framework so I choosed zend framework. I installed the zend community server and tried to follow a tutorial. 
...</description>
			<content:encoded><![CDATA[<div>Hi,<br />
<br />
I decided that I must learn a framework so I choosed zend framework. I installed the zend community server and tried to follow a tutorial.<br />
<br />
The first thing that I tried to do was to use the zend tools and the command &quot;zf create project&quot; in order to create the folder structure automatically.<br />
I couldn't do it for the directory htdocs so I created it in another directory and I just transfered it to the htdocs.<br />
My first project was called &quot;helloworld&quot; ...<br />
So I went to the following directory   helloworld\application\views\scripts\index   and I changed the content of the index.phtml in order to show in my browser something like &quot;Hello zendframework world&quot;.<br />
<br />
Unfortunately when I type localhost/helloworld in my browser showed only the directories in this directory.<br />
I checked the .htaccess and it was as it should be. <br />
<br />
1st<br />
Why my command didn't create the directory structure in the htdocs?<br />
2nd <br />
Does anybody know why I couldn't see the helloworld message that I wrote in the index file located to the directory that I mention above?</div>

 ]]></content:encoded>
			<category domain="http://www.zfforums.com/zend-framework-general-discussions-1/general-q-zend-framework-2/"><![CDATA[General Q&A on Zend Framework]]></category>
			<dc:creator>x_maras</dc:creator>
			<guid isPermaLink="true">http://www.zfforums.com/zend-framework-general-discussions-1/general-q-zend-framework-2/zf-create-project-zend-community-server-5506.html</guid>
		</item>
		<item>
			<title>order by field of type enum</title>
			<link>http://www.zfforums.com/zend-framework-general-discussions-1/general-q-zend-framework-2/order-field-type-enum-5505.html</link>
			<pubDate>Thu, 09 Sep 2010 12:58:58 GMT</pubDate>
			<description><![CDATA[Hi there, 
 
I have a field 'bagStatus' of type enum with values 'failed' , 'ongoing', 'completed' 
 
I want to use zf ORDER clause on the bagStatus....]]></description>
			<content:encoded><![CDATA[<div>Hi there,<br />
<br />
I have a field 'bagStatus' of type enum with values 'failed' , 'ongoing', 'completed'<br />
<br />
I want to use zf ORDER clause on the bagStatus.<br />
In MySQL I remember and use the clause<br />
order by(fieldName,'fieldValue1','fieldValue2','fieldVal  ue3')<br />
<br />
What is the equivalent syntax in ZF?<br />
<br />
thanks,<br />
Pranay</div>

 ]]></content:encoded>
			<category domain="http://www.zfforums.com/zend-framework-general-discussions-1/general-q-zend-framework-2/"><![CDATA[General Q&A on Zend Framework]]></category>
			<dc:creator>sspranay</dc:creator>
			<guid isPermaLink="true">http://www.zfforums.com/zend-framework-general-discussions-1/general-q-zend-framework-2/order-field-type-enum-5505.html</guid>
		</item>
		<item>
			<title>Problème de balises php qui disparaissent dans la views</title>
			<link>http://www.zfforums.com/zend-framework-components-13/model-view-controller-mvc-21/probl-me-de-balises-php-qui-disparaissent-dans-la-views-5504.html</link>
			<pubDate>Thu, 09 Sep 2010 09:45:03 GMT</pubDate>
			<description><![CDATA[Bonjour, 
 
j'ai un problème très récent avec Zend, j'ai réinstaller Xampp sur window xp pour avoir la dernière version d'apache, php... 
...]]></description>
			<content:encoded><![CDATA[<div>Bonjour,<br />
<br />
j'ai un problème très récent avec Zend, j'ai réinstaller Xampp sur window xp pour avoir la dernière version d'apache, php...<br />
<br />
Désormais, lorsque je visualise une page sur mon navigateur, les balises de <acronym title="Page Ranking">pr</acronym>ésentes dans mes views : &lt;? &lt;?= &lt;?php disparaissent, ce qui m'affiche un code tel que :<br />
<br />
doctype() ?&gt; headTitle(); ?&gt; headScript(); ?&gt; headStyle(); ?&gt;<br />
<br />
ce qui est assez génant, vous n'en douterez pas ^^<br />
<br />
Je viens, en effet de re-paramétrer les configs apache pour avoir le virtual host, un nom de domaine en local personnalisé, une ssl sur mon phpmadmin ....  <br />
<br />
Avant le reparamétrage de xampp et zend, tout fonctionnait correctement, donc je suppose que ça ne vient pas d'une erreur dans mon code.<br />
<br />
D'où cela peut'il venir ?</div>

 ]]></content:encoded>
			<category domain="http://www.zfforums.com/zend-framework-components-13/model-view-controller-mvc-21/">Model-View-Controller (MVC)</category>
			<dc:creator>ariden</dc:creator>
			<guid isPermaLink="true">http://www.zfforums.com/zend-framework-components-13/model-view-controller-mvc-21/probl-me-de-balises-php-qui-disparaissent-dans-la-views-5504.html</guid>
		</item>
		<item>
			<title>how to get dynamic URL like mydomain.com/username using zend framework</title>
			<link>http://www.zfforums.com/zend-framework-components-13/model-view-controller-mvc-21/how-get-dynamic-url-like-mydomain-com-username-using-zend-framework-5503.html</link>
			<pubDate>Thu, 09 Sep 2010 06:45:32 GMT</pubDate>
			<description>Hello guys 
 
I am developing an application using zend framework. In the application I have to provide a URL for each user like...</description>
			<content:encoded><![CDATA[<div>Hello guys<br />
<br />
I am developing an application using zend framework. In the application I have to provide a URL for each user like mydomain.com/[username] then public will be able to view his profile. [username] is the username of the particular user<br />
<br />
But how can I achieve this ? I think in ZF mydomain.com/username tries to get the controller with name username, but I should show user profiles in this URL and it must goes to the right controller if something else comein like mydomain.com/controller1<br />
<br />
Please help<br />
<br />
Thanks a lot</div>

 ]]></content:encoded>
			<category domain="http://www.zfforums.com/zend-framework-components-13/model-view-controller-mvc-21/">Model-View-Controller (MVC)</category>
			<dc:creator>dev_joy</dc:creator>
			<guid isPermaLink="true">http://www.zfforums.com/zend-framework-components-13/model-view-controller-mvc-21/how-get-dynamic-url-like-mydomain-com-username-using-zend-framework-5503.html</guid>
		</item>
		<item>
			<title>Relationship of other relationship result</title>
			<link>http://www.zfforums.com/zend-framework-components-13/databases-20/relationship-other-relationship-result-5502.html</link>
			<pubDate>Wed, 08 Sep 2010 12:31:27 GMT</pubDate>
			<description><![CDATA[I have a main table "Order" that has depedentTables "Orderitems". And that relationship works well. 
But I also have a relationship in each order...]]></description>
			<content:encoded><![CDATA[<div>I have a main table &quot;Order&quot; that has depedentTables &quot;Orderitems&quot;. And that relationship works well.<br />
But I also have a relationship in each order item row to select Unittype from third table &quot;Set_unittypes&quot;.<br />
And I don't get how to make this last relationship work out.<br />
<br />
<br />
Order_items:<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; &nbsp; protected $_referenceMap = array(<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'orderitems' =&gt; array(<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'columns' =&gt; array('parent_id'),<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'refTableClass' =&gt; 'Model_DbTable_Order',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'refColumns'&nbsp; &nbsp; &nbsp; &nbsp; =&gt; array('entity_ID')<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ),<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'setunittypes' =&gt; array(<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'columns' =&gt; array('unittype'),<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'refTableClass' =&gt; 'Model_DbTable_SetUnittypes',<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 'refColumns'&nbsp; &nbsp; &nbsp; &nbsp; =&gt; array('id')<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ),&nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; );</code><hr />
</div> The setunittypes as Orderitems as depedenttable.<br />
<br />
The relationship Order to Order_items work great. But I don't know how I shall connect the Order_items relationship to Unittype for each row.<br />
<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	<hr /><code class="bbcode_code">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $order = $this-&gt;orderService-&gt;GetOrder($get_entity_id);<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $this-&gt;view-&gt;order = $order;<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if ($order) {<br />
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $order_items = $this-&gt;view-&gt;order-&gt;findDependentRowset('Model_DbTable_Orderitems');</code><hr />
</div> </div>

 ]]></content:encoded>
			<category domain="http://www.zfforums.com/zend-framework-components-13/databases-20/">Databases</category>
			<dc:creator>Skatan</dc:creator>
			<guid isPermaLink="true">http://www.zfforums.com/zend-framework-components-13/databases-20/relationship-other-relationship-result-5502.html</guid>
		</item>
		<item>
			<title>MAMP include_path problem</title>
			<link>http://www.zfforums.com/zend-framework-general-discussions-1/installation-configuration-3/mamp-include_path-problem-5501.html</link>
			<pubDate>Tue, 07 Sep 2010 23:00:36 GMT</pubDate>
			<description>Hi 
Im just starting my first Zend project but im having some problems with MAMP! 
 
i have the Zend Framework library/ folder installed in the root...</description>
			<content:encoded><![CDATA[<div>Hi<br />
Im just starting my first Zend project but im having some problems with MAMP!<br />
<br />
i have the Zend Framework library/ folder installed in the root of my project<br />
<br />
and have the php.ini include path set to <br />
<br />
(my project is helloworld)<br />
<br />
include_path = &quot;.:/Applications/MAMP/bin/php5.3/lib/php/:/Applications/MAMP/htdocs/helloworld/library/&quot;<br />
<br />
when i run the MAMP phpinfo() the include path for both local and master values says<br />
&quot;.:/Applications/MAMP/bin/php5.3/lib/php/:/Applications/MAMP/htdocs/helloworld/library/&quot;<br />
<br />
im sure when i have set up 2 dirs in the include path in the past it comes up with <br />
/Applications/MAMP/htdocs/helloworld/library/ for local value<br />
<br />
and<br />
.:/Applications/MAMP/bin/php5.3/lib/php/: for master value<br />
<br />
when i run the Zend_tool.... zf show version<br />
i get the following error:<br />
<br />
&quot;In order to run the zf command, you need to ensure that Zend Framework<br />
is inside your include_path.  &quot;<br />
<br />
anone come across this before and solved it?<br />
<br />
cheers</div>

 ]]></content:encoded>
			<category domain="http://www.zfforums.com/zend-framework-general-discussions-1/installation-configuration-3/"><![CDATA[Installation & Configuration]]></category>
			<dc:creator>Bloodylyons</dc:creator>
			<guid isPermaLink="true">http://www.zfforums.com/zend-framework-general-discussions-1/installation-configuration-3/mamp-include_path-problem-5501.html</guid>
		</item>
		<item>
			<title>Is UML Class Diagram of Zend_Log correct?</title>
			<link>http://www.zfforums.com/zend-framework-general-discussions-1/general-q-zend-framework-2/uml-class-diagram-zend_log-correct-5500.html</link>
			<pubDate>Tue, 07 Sep 2010 20:23:51 GMT</pubDate>
			<description><![CDATA[*Background of question* 
 
Analysis of Zend_Log reveals following Class Diagram 
 
*Zend_Log:* 
 
    * uses ReflectionClass & Zend_Log_Exception 
 ...]]></description>
			<content:encoded><![CDATA[<div><b>Background of question</b><br />
<br />
Analysis of Zend_Log reveals following Class Diagram<br />
<br />
<b>Zend_Log:</b><br />
<br />
    * uses ReflectionClass &amp; Zend_Log_Exception<br />
    * maintains reference to array of Zend_Log_Writer_Abstract<br />
    * maintains references to array of Zend_Log_Filter_Interface<br />
<br />
<b>Zend_Log_Writer_Abstract</b><br />
<br />
    * maintains reference to array of Zend_Log_Filter_Interface<br />
    * maintains reference to Zend_Log_Formatter_Interface<br />
<br />
<img src="http://i378.photobucket.com/albums/oo222/ahmedshaikhm/StackOverflow/Zend_Log_UML_ClassDiagram.jpg" border="0" alt="" /><br />
<br />
<b>Questions</b><br />
<br />
   1. Zend_Log_Filter_Interface relates with Zend_Log_Filter_Suppress, Zend_Log_Filter_Message &amp; Zend_Log_Filter_Priority as depicted, is this correctly laid out in Class Diagram?<br />
<br />
   2. Is it okay to say that, the Zend_Log contains reference to array of Zend_Log_Filter_Interface and this is composition relationship (similarly for Zend_Log_Writer_Abstract)?<br />
<br />
   3. As it is obvious that Zend_Log_Filter_Interface is contained by both Zend_Log &amp; Zend_Log_Writer_Abstract, while Zend_Log contains Zend_Log_Writer_Abstract, that makes Zend_Log_Filter referenced by both container (Zend_Log) and contained (Zend_Log_Writer_Abstract); is that some &quot;Design Pattern&quot;, if yes what is the name?<br />
<br />
Regards!</div>

 ]]></content:encoded>
			<category domain="http://www.zfforums.com/zend-framework-general-discussions-1/general-q-zend-framework-2/"><![CDATA[General Q&A on Zend Framework]]></category>
			<dc:creator>r0ash</dc:creator>
			<guid isPermaLink="true">http://www.zfforums.com/zend-framework-general-discussions-1/general-q-zend-framework-2/uml-class-diagram-zend_log-correct-5500.html</guid>
		</item>
		<item>
			<title><![CDATA[Email template in zend framework [URGENT]!]]></title>
			<link>http://www.zfforums.com/zend-framework-components-13/mail-formats-search-14/email-template-zend-framework-urgent-5499.html</link>
			<pubDate>Mon, 06 Sep 2010 12:20:45 GMT</pubDate>
			<description>Hi All, 
 
I am working on a project which contains new user registration function, I develop my project under zend framework. I have implemented the...</description>
			<content:encoded><![CDATA[<div>Hi All,<br />
<br />
I am working on a project which contains new user registration function, I develop my project under zend framework. I have implemented the function of sending email which doesn't contain any body message! I assume there must be something wrong with the setBodyText(), following is my code:<br />
<br />
$mail = new Zend_Mail ();<br />
$mail-&gt;addTo ('toaddress');<br />
$mail-&gt;setSubject( 'Thank you for registration!' );<br />
require &quot;confirm.phtml&quot;;<br />
$mail-&gt;setBodyText($email);<br />
$mail-&gt;send();<br />
<br />
The $email variable is defined in the confirm.phtml file under /views/scripts, however it says $email is an undefined variable. My confirm.phtml is as follows:<br />
&lt;?php<br />
$email = &lt;&lt;&lt; email<br />
Welcome!<br />
email;<br />
?&gt;<br />
<br />
I really cannot figure out what's wrong with it, any one can offer me help???<br />
A big &quot;THANKYOU&quot; in advance!!!<br />
<br />
Michael</div>

 ]]></content:encoded>
			<category domain="http://www.zfforums.com/zend-framework-components-13/mail-formats-search-14/"><![CDATA[Mail, Formats & Search]]></category>
			<dc:creator>rocketman</dc:creator>
			<guid isPermaLink="true">http://www.zfforums.com/zend-framework-components-13/mail-formats-search-14/email-template-zend-framework-urgent-5499.html</guid>
		</item>
	</channel>
</rss>
