I want to display series of [A B C .... Z] is it possible using php?
I only want to display A-Z.
does php support series?
Moderator: General Moderators
Code: Select all
echo join('', range('A','Z'));- itsmani1
- Forum Regular
- Posts: 791
- Joined: Mon Sep 29, 2003 2:26 am
- Location: Islamabad Pakistan
- Contact:
yes this is ok, can i produce something like :
etc
Code: Select all
<a href="a.php">a</a>
<a href="b.php">b</a>
<a href="c.php">c</a>Code: Select all
for($i=97;$i<123;$i++)
echo "<a href='".chr($i).".php'>".chr($i)."</a><br>";