Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 20576 программистов и 984 робота. Сейчас ищет 881 программист ...

<INPUT NAME="name">

Вернуться к: HTML_Template_Flexy

<INPUT NAME="name">

<INPUT NAME="name"> – creates PHP variable for input values

Synopsis

Usage ( <INPUT NAME="name"> )

fills in the form with values based on the form name and the tag name. If flexyignore is used, it is left alone (or if the body or form has a flexyignore tag it will be left alone).

Example

Using an element to change a template.

<?php
$form 
= new HTML_Template_Flexy();
$form->compile('some_file_name');

// create an instance (note you dont have to specify any details..)

$elements['test'] = new HTML_Template_Flexy_Element;

// change an attribute
$elements['test']->attributes['class'] = 'bold';

// sets the value
$elements['test']->setValue('Fred');


// wrap it with something
$elements['test']->prefix '******';
$elements['test']->suffix '!!!!!!';

$form->outputObject(new StdClass$elements);

// in the example below, the new data you have added is to the existing attributes
?>

template example

          <BODY>   <FORM name="XXXX" flexy:ignoreonly="yes">        <INPUT name="test" length="12">             </FORM> </BODY>

compiled template

<BODY>
  <FORM name="XXXX">
  
    <?php echo $this->elements['test']->toHtml();?>
    
    
  </FORM>
</BODY>

output from the Template

          <BODY>   <FORM name="XXXX">        ******<INPUT name="test"  length="12" class="bold" value="Fred">!!!!!!              </FORM> </BODY>


Вернуться к: HTML_Template_Flexy

© 2024 «PHP.RU — Сообщество PHP-Программистов»
Главная | Форум | Реклама на сайте | Контакты VIP Сувениры
Разработка компании ODware