Generate Alphabet With Php Code

Welcome Login | Register

Generate Alphabet With Php Code
  Forums Index
      » PHP Forums
        » » Generate Alphabet With Php Code



Generate Alphabet With Php Code
Post Description:
Post Tags: generate, alphabet, with, php, code, free php support, php scripts, php questions, php answers, programming, codes, scripts
This Post Has Been Viewed 476 Times Since Sat Apr 26, 2008 3:24 pm Posted By hostman with 0 replies
Next Post »» how to make mysql query into array
Generate Alphabet With Php Code
you can use this loop to generate and show all the alphabet letters with your php scripts

PHPCODE:
<?php
for ($i=65; $i<=90; $i++) {
$Letter = chr($i);
print $Letter ." ";
?>


if you need more information visit this post:

how-to-generate-alphabet-with-php-code

hope this helps

please login to add your comments

Comments and replies About Generate Alphabet With Php Code




(0) Comments