Sunday, October 04, 2009

Listing Alphabets in PHP

foreach(range('A', 'Z') as $char) {
echo $char;
}
?>

No comments:

Post a Comment