Example #1
0
    </style>
  </head>
<body>
<table style='margin-left:auto; margin-right: auto;'>
    <thead>
        <tr>
            <th style='border: 0px'></th>
            <th>Language</th>
            <th>Valid Codes</th>
        </tr>
    </thead>
    <tbody>
        <?php 
$i = 0;
foreach (Luminous::scanners() as $l => $codes) {
    ?>
            <tr>
                <td><?php 
    echo ++$i;
    ?>
</td>
                <td><?php 
    echo $l;
    ?>
</td>
                <td><?php 
    echo join(', ', $codes);
    ?>
</td>
            </tr>