Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16515 программистов и 1771 робот. Сейчас ищут 1532 программиста ...
flexy:startchildren="here"
Вернуться к: HTML_Template_Flexy
flexy:startchildren="here"
flexy:startchildren="here" – Start the output using its children.
Synopsis
Usage ( flexy:startchildren="here" )
Tells the generator to start outputing using the children of this tag. This can be useful if you want to edit the template in a editor that expects a head/footer, normally adding this to body
The actual value of the tag is not relivant.
Example
Template with flexystartchildren
<HTML> <HEAD></HEAD> <BODY flexy:startchildren="here"> <H1>This is an example</H1> <FORM name="input" flexy:ignoreonly="yes"> <INPUT name="hello" flexy:ignore="yes"> </FORM> </BODY> </HTML>
Compiled template
<H1>This is an example</H1> <FORM NAME="input"> <INPUT NAME="hello"> </FORM>
Вернуться к: HTML_Template_Flexy