[PHPTAL] html entitiy confusion

2007-11-17 Thread Aaron Forsander
Hi everyone, I have a question about html entities and what not in phptal. I have stuff in a database that contains html. When ever I output that stuff in phptal, it converts it to html entities. I don't want this to happen :). Is there a way I can turn off that feature, or perhaps override it?

Re: [PHPTAL] html entitiy confusion

2007-11-17 Thread Levi Stanley
Hi Aaron Forsander: Could you post some code so I can see what you are trying to do? Best regards, Levi Aaron Forsander wrote: Hi everyone, I have a question about html entities and what not in phptal. I have stuff in a database that contains html. When ever I output that stuff in phpta

Re: [PHPTAL] html entitiy confusion

2007-11-17 Thread Aaron Forsander
I have no clue how this is going to look as I am using a lot of html here, you might need to view the email in plain text. A post looks something like this: post->id = 1 post->post_time = 2007-11-16 18:14:44 post->post_author = someone post->post_text = http://www.url.com";> blah And I am iter

Re: [PHPTAL] html entitiy confusion

2007-11-17 Thread David Zülke
Aaron, 1) no need for that span element, you can loop using the div 2) you're not using the "proper" way to output data, which also means you cannot have the literal values printed Do it like this: Joe Cooldiv> February 30 Dummy text here HTH, David Am 17.11.2007 um 19:37

Re: [PHPTAL] html entitiy confusion

2007-11-17 Thread Aaron Forsander
Thanks for the advice, that helps me clean up my code a great deal. Unfortunately,after making those changes, I still have the same issue, phptal converts strings to html entities. :( - Aaron On Nov 17, 2007 1:29 PM, David Zülke <[EMAIL PROTECTED]> wrote: > Aaron, > > 1) no need for that span

Re: [PHPTAL] html entitiy confusion

2007-11-17 Thread David Zülke
not if you use the "structure" keyword, as described in the manual David Am 17.11.2007 um 20:52 schrieb Aaron Forsander: Thanks for the advice, that helps me clean up my code a great deal. Unfortunately,after making those changes, I still have the same issue, phptal converts strings to ht

Re: [PHPTAL] html entitiy confusion

2007-11-17 Thread Aaron Forsander
Ahhh, that was exactly what I needed to know. Thanks! - Aaron On Nov 17, 2007 6:12 PM, David Zülke <[EMAIL PROTECTED]> wrote: > not if you use the "structure" keyword, as described in the manual > > > David > > > > > Am 17.11.2007 um 20:52 schrieb Aaron Forsander: > > > > Thanks for the advice,