Jump to content

Show info by first letter of name


Greaser9780

Recommended Posts

I am having difficulty figuring out how to only show a list of gametitle by a givin letter. I used a tutorial found here to get the list broken down by letter using a substring but don't know how to only show certain letters. Here is my code right now:

$gam1 = mysql_query("SELECT gametitle FROM games ORDER BY gametitle ASC") or die(mysql_error());
                             while ($list = mysql_fetch_object($gam1)): 
                $letter = strtoupper(substr($list->gametitle, 0, 1)); 
                if ($prev_row != '0-9' && is_numeric($letter)): 
                    echo '<br /><a gametitle="#number"></a><b><u>0-9</u></b> '; 
                    $prev_row = '0-9'; 
                endif; 
                if ($letter != $prev_row && !is_numeric($letter)): 
                    echo '<br /><a gametitle="'.$letter.'"></a><b><u>'.$letter.'</u></b> ';  
                    $prev_row = $letter; 
                endif; 
                echo $list->gametitle.'<br />'; 
            endwhile; 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.