i'm working on a template system. i parse an *.html and want to replace some custom tags. for example:
...
<td><multilanguage:Hello></td>
...
i want to take the string "Hello" and pass it in a php function, and the output should be the return value of the php function instead of 'Hello'
or is it a better way to make it this way:
<multilanguage>Hello</multilanguage>