On 03-12-2009 at 15:18:56 <hosema...@poczta.onet.pl> wrote:

Is there a method that throws pure XHTML without tal tags?
I mean when there is ex. template like this:
<tr><th> Name</th><th> City</th>
<tal:block id="items" tal:repeat="item list">
<tr><td class="name">${item/name} </td><td class="city">${item/city} </=
td></tr>
<tal:block>
after ex. function
$tpl->new_execute();
result is like this:
<tr><th> Name</th><th> City</th>
<tr><td class="name"> </td><td class="city"> </td></tr>
If not exists is there a simple way to add it?

What do you need this for? Why not simply execute the template?

--
regards, Kornel

_______________________________________________
PHPTAL mailing list
PHPTAL@lists.motion-twin.com
http://lists.motion-twin.com/mailman/listinfo/phptal

Reply via email to