%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : www.kowitt.ac.th / Your IP : 216.73.216.118 Web Server : Microsoft-IIS/7.5 System : Windows NT SERVER02 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.6.31 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/BK/wwwroot/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>