| 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));
}
?>
|