Sha256: 5483c9e9494d5dd236c62d27c4187b9a2c8e8f3e323099091a8710fba228ac85
Contents?: true
Size: 348 Bytes
Versions: 216
Compression:
Stored size: 348 Bytes
Contents
<?php $user = "World"; $list = array('<aaa>', 'b&b', '"ccc"'); ?> <p>Hello @{$user}@!</p> <table> <tbody> <?php $i = 0 ?> <?php foreach ($list as $item) { ?> <?php $i++; ?> <tr bgcolor="@!{$i % 2 == 0 ? '#FFCCCC' : '#CCCCFF'}@"> <td>@!{$i}@</td> <td>@{$item}@</td> </tr> <?php } ?> </tbody> </table>
Version data entries
216 entries across 190 versions & 44 rubygems