how to search in php by using alphabetic charecter in php i have code which show alphabetic like A to Z but how to search data by using thi alphabetic
code is below:-
<?php for ($i = 65 ; $i < 91 ; $i++)
{
printf ('<a href = "%s?result.php?$i=%s">%s</a> ', $PHP_SELF, chr($i), chr($i));
}
?>
after use this code show A to Z Alphabetic but is search and select A then data show only A related from database but how to use in php i m not getting please some one Assist me and help me
Thank's In Advance
Rohit Tripathi