Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4

Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4

Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4

Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4

Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4

Warning: Cannot modify header information - headers already sent by (output started at /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code:102) in /var/www/iplanru/data/www/intesco.ru/d59ed/index.php(1) : eval()'d code(2) : eval()'d code on line 4
\n"; } /** * Password input field */ function addPwField($name , $value = null, $extra_attributes='') { return addInputField('password', $name , $value, $extra_attributes); } /** * Form checkbox */ function addCheckBox($name, $checked = false, $value = null, $extra_attributes='') { return addInputField('checkbox', $name, $value, ($checked ? ' checked="checked"' : '') . $extra_attributes); } /** * Form radio box */ function addRadioBox($name, $checked = false, $value = null) { return addInputField('radio', $name, $value, ($checked ? ' checked="checked"' : '')); } /** * A hidden form field. */ function addHidden($name, $value) { return addInputField('hidden', $name, $value); } /** * An input textbox. */ function addInput($name, $value = '', $size = 0, $maxlength = 0, $extra_attributes='') { if ($size) { $extra_attributes .= ' size="'.(int)$size.'"'; } if ($maxlength) { $extra_attributes .= ' maxlength="'.(int)$maxlength .'"'; } return addInputField('text', $name, $value, $extra_attributes); } /** * Function to create a selectlist from an array. * Usage: * name: html name attribute * values: array ( key => value ) -> * default: the key that will be selected * usekeys: use the keys of the array as option value or not */ function addSelect($name, $values, $default = null, $usekeys = false) { // only one element if(count($values) == 1) { $k = key($values); $v = array_pop($values); return addHidden($name, ($usekeys ? $k:$v)). htmlspecialchars($v) . "\n"; } $ret = '\n"; return $ret; } /** * Form submission button * Note the switched value/name parameters! */ function addSubmit($value, $name = null, $extra_attributes='') { return addInputField('submit', $name, $value, $extra_attributes); } /** * Form reset button, $value = caption */ function addReset($value) { return addInputField('reset', null, $value); } /** * Textarea form element. */ function addTextArea($name, $text = '', $cols = 40, $rows = 10, $attr = '') { return '\n"; } /** * Make a
start-tag. * * @param string $action * @param string $method * @param string $name * @param string $enctype * @param string $charset * @param string $extra Any other attributes can be added with this parameter; * they should use double quotes around attribute values * (OPTIONAL; default empty) * @param mixed $add_token When given as a string or as boolean TRUE, a hidden * input is also added to the form containing a security * token. When given as TRUE, the input name is "smtoken"; * otherwise the name is the string that is given for this * parameter. When FALSE, no hidden token input field is * added. (OPTIONAL; default not used) * */ function addForm($action, $method = 'post', $name = '', $enctype = '', $charset = '', $extra = '', $add_token = FALSE) { if($name) { $name = ' name="'.$name.'"'; } if($enctype) { $enctype = ' enctype="'.$enctype.'"'; } if($charset) { $charset = ' accept-charset="'.htmlspecialchars($charset).'"'; } $form_string = '\n"; if($add_token) { $form_string .= '\n"; } return $form_string; }