A to Z links
Have you ever seen those sites that have an A to Z list of letters with different links in each category . Well we are goning to show you a way to produce those lists.
Here is the script
<?php
for ($i = 65 ; $i < 91 ; $i++)
{
printf ('<a href = "%s?mylink=%s">%s</a> ', $PHP_SELF, chr($i), chr($i));
}
?>
and here is an example
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
|