how do you list the alphabet simply and dont have to type all the letters in?
Dude... it's only 26 letters. It's fewer letters than are in your post :p
he is very right but if you must script it
$letter = "a"; for (i=1;i <= 26;i++) { echo $letter." "; $letter++; }
If memory serves that will do it.
for ($i = 192; $i <= 223; $i++) { echo chr($i)."<BR>"; }
This will list you Russian letters, but you can change the values=)
for ($Character = 65; $Character < 91; $Character++) { echo chr($Character); }
English abc's 🙂
thanks to everyone who replied, i really appreciate it! Now I have another question: How do I make each letter a link such as a query string?