home *** CD-ROM | disk | FTP | other *** search
/ H4CK3R 4 / hacker04 / 04_HACK04.ISO / src / PHP / Az.php < prev    next >
Encoding:
Text File  |  2001-07-02  |  626 b   |  18 lines

  1.     //**************************************
  2.     //     
  3.     // Name: A - Z links the easy way
  4.     // Description:To create A - Z links qui
  5.     //     ckly and easily for your site.
  6.     // By: Louie Simpson
  7.     //
  8.     //This code is copyrighted and has    // limited warranties.Please see http://
  9.     //     www.Planet-Source-Code.com/xq/ASP/txtCod
  10.     //     eId.289/lngWId.8/qx/vb/scripts/ShowCode.
  11.     //     htm    //for details.    //**************************************
  12.     //     
  13.     
  14.     <? for($i=65;$i<91;$i++) { ?>
  15.         <a href="<?=$PHP_SELF?>?letter=<?=chr($i)?>"><?=chr($i)?></a>
  16.     <?    } ?>
  17.  
  18.