A to Z links
This example shows how to display those A to Z links that you see frequently on various websites .
<? for($i=65;$i<91;$i++) { ?>
<a href="<?=$PHP_SELF?>?letter=<?=chr($i)?>">
<?=chr($i)?></a>
<? } ?>
And here it is in action.
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
|