| Server IP : 172.67.187.206 / Your IP : 162.159.115.42 Web Server : Apache/2.4.25 (Win32) OpenSSL/1.0.2j PHP/5.6.30 System : Windows NT WIN-ECQAAA40806 6.2 build 9200 (Windows Server 2012 Standard Edition) i586 User : SYSTEM ( 0) PHP Version : 5.6.30 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Inetpub/www/phpMyAdmin/templates/columns_definitions/ |
Upload File : |
<?php
$attribute_types = $GLOBALS['PMA_Types']->getAttributes();
$cnt_attribute_types = count($attribute_types);
$attribute = '';
if (isset($submit_attribute) && $submit_attribute != false) {
$attribute = $submit_attribute;
} elseif (isset($columnMeta['Extra'])
&& $columnMeta['Extra'] == 'on update CURRENT_TIMESTAMP') {
$attribute = 'on update CURRENT_TIMESTAMP';
} elseif (isset($extracted_columnspec['attribute'])) {
$attribute = $extracted_columnspec['attribute'];
}
$attribute = mb_strtoupper($attribute);
?>
<select style="width: 7em;"
name="field_attribute[<?= $columnNumber; ?>]"
id="field_<?= $columnNumber; ?>_<?= ($ci - $ci_offset); ?>">
<?php for ($j = 0; $j < $cnt_attribute_types; $j++): ?>
<option value="<?= $attribute_types[$j];?>"
<?php if ($attribute == mb_strtoupper($attribute_types[$j])): ?>
selected="selected"
<?php endif; ?>>
<?= $attribute_types[$j]; ?>
</option>
<?php endfor; ?>
</select>