This one works: {{ content1 }} This one gives textarea with test as content: <textarea>test</textarea>
These 2 give a textarea without the content??? {{ text_area("comment", "This is the content", "cols": "6", "rows": 20) }} <?php echo Phalcon\Tag::textArea(array( "comment", "test", "cols" => "6", "rows" => 20 )) ?>
many thanks Raymond