View difference between Paste ID: nKsEq9tN and FbJhUFJk
SHOW: | | - or go back to the newest paste.
1-
list($alph,$search)=array("abcdefghijklmnopqrstuvwxyz",$_GET['string']);
for($i=0;$i<strlen($alph);$i  ) printf("%s %s's <br />",($result=preg_match_all('/'.$alph{$i}.'/',$search,$match)) ? $result : "No ",$alph{$i});
1+
list($alph,$search)=array("abcdefghijklmnopqrstuvwxyz",strtolower($_GET['string']));
2
for($i=0;$i<strlen($alph);$i  ) printf("%s %s's <br />",($result=preg_match_all('/'.$alph{$i}.'/',$search,$match)) ? $result : "No ",$alph{$i});