Code Snippet
Quick Alphabetic Navigation
Could be useful for an address book style navigation.
<?php
foreach (range('a', 'z') as $char) {
print '<a href="#' . $char . '">' . $char . '</a> | ';
}
?>Could be useful for an address book style navigation.
<?php
foreach (range('a', 'z') as $char) {
print '<a href="#' . $char . '">' . $char . '</a> | ';
}
?>
This is awesome! So simple, but such a good use of the range function.
Would be good for a glossary or huge list of items.