Server : Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.4.6 System : Windows NT USER-PC 6.1 build 7601 (Windows 7 Professional Edition Service Pack 1) AMD64 User : User ( 0) PHP Version : 7.4.6 Disable Function : NONE Directory : C:/xampp/phpMyAdmin/templates/server/collations/ |
<h2> {{ get_image('s_asci') }} {% trans 'Character sets and collations' %} </h2> <div id="div_mysql_charset_collations"> <table class="data noclick"> <thead> <tr> <th id="collationHeader">{% trans 'Collation' %}</th> <th>{% trans 'Description' %}</th> </tr> </thead> {% for charset in charsets %} <tr> <th colspan="2" class="right"> {{ charset.name }} {% if charset.description is not empty %} (<em>{{ charset.description }}</em>) {% endif %} </th> </tr> {% for collation in charset.collations %} <tr{{ collation.is_default ? ' class="marked"' }}> <td>{{ collation.name }}</td> <td>{{ collation.description }}</td> </tr> {% endfor %} {% endfor %} </table> </div>