Sha256: c3f950f8aaf3412c1515b47b73f326f8611e2166a4652b61344a3b1b08d909ee
Contents?: true
Size: 426 Bytes
Versions: 214
Compression:
Stored size: 426 Bytes
Contents
<?xml version="1.0"?> <html> <body> <h3>List</h3> <?php if (!$list) { ?> <p>not found.</p> <?php } else { ?> <table> <tbody> <?php $i = 0; ?> <?php foreach ($list as $item) { ?> <tr bgcolor="<?php echo ++$i % 2 == 1 ? '#FCC' : '#CCF'; ?>"> <td><?php echo $item; ?></td> </tr> <?php } ?> </tbody> </table> <?php } ?> </body> </html>
Version data entries
214 entries across 188 versions & 44 rubygems