Jump to content

PravinS

Members
  • Posts

    459
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by PravinS

  1. This will help you

    <?php
    	//For A - Z (Capital letters)
    	for($c=65;$c<=90;$c++)
    	{
    		echo '<a href="page.php?letter='.chr($c).'">'.chr($c).'</a>';
    	}
    	
    	//For a - z (Small letters)
    	for($c=97;$c<=122;$c++)
    	{
    		echo '<a href="page.php?letter='.chr($c).'">'.chr($c).'</a>';
    	}
    ?>
    
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.