On 7/31/09 12:27 PM, "Bastien Koert" <phps...@gmail.com> wrote:

$letter = isset($_GET['letter']) ? $_GET['letter'] :"";

 echo '<div align="center"><b>';

 foreach(range('A','Z') as $c){
   ($letter == $c) ? printf('%s&nbsp',$c) : printf('<a
href="browse.php?letter=%s">%s</a>&nbsp;',$c,$c);
 }

 echo '<br>';

 //Other
 $bNumberShown = false;
 foreach(range('0','9') as $n){
   if($letter == $n) {
     printf('%s&nbsp',$n)
   }else{
    if ($bNumberShown){
       printf('<a href="?letter=%s">%s</a>&nbsp;',$n,$n);
     }else{
       printf('<a href="?letter=%s">#%s</a>&nbsp;',$n,$n);
       $bNumberShown = true;
     }
 }

  echo "</b><br></div><p>";

Looks like it would work but I keep getting syntax error unexpected { at the 
first
 }else{
I have tried to move the brackets around but it just moves the error....

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to