Results 1 to 4 of 4

Thread: Ordering Result Alphabetically

  1. #1
    Join Date
    Aug 2006
    Location
    Ohio
    Posts
    266
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Ordering Result Alphabetically

    Ok, I am trying to get results from a database and show them alphabetically and am not sure how to do this. My guess is that it is in the mysql query string, maybe something like this:
    PHP Code:
    $qry mysql_query("SELECT * FROM `table` ORDER BY alphabetical ASC"); 
    Or something like that. Anyone know for sure?
    Thanks DD, you saved me countless times

  2. #2
    Join Date
    Sep 2006
    Location
    St. George, UT
    Posts
    2,769
    Thanks
    3
    Thanked 157 Times in 155 Posts

    Default

    Well, which column in your database do you want to order alphabetically and does the column have words in it? If so, simply do this (let's say the column is called "names"):

    Code:
    $qry = mysql_query("SELECT * FROM `table` ORDER BY `names` ASC");
    It will automatically place them in alpahbetical order.

    Hope this helps.
    "Computer games don't affect kids; I mean if Pac-Man affected us as kids, we'd all be running around in darkened rooms, munching magic pills and listening to repetitive electronic music." - Kristian Wilson, Nintendo, Inc, 1989
    TheUnlimitedHost | The Testing Site | Southern Utah Web Hosting and Design

  3. #3
    Join Date
    Aug 2006
    Location
    Ohio
    Posts
    266
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Thanks, I never even thought of it being automatic, you saved me a bunch of time
    Thanks DD, you saved me countless times

  4. #4
    Join Date
    Jun 2005
    Location
    英国
    Posts
    11,876
    Thanks
    1
    Thanked 180 Times in 172 Posts
    Blog Entries
    2

    Default

    It's not exactly automatic... it gets ordered by the numerical values of the characters.
    Twey | I understand English | 日本語が分かります | mi jimpe fi le jbobau | mi esperanton komprenas | je comprends français | entiendo español | tôi ít hiểu tiếng Việt | ich verstehe ein bisschen Deutsch | beware XHTML | common coding mistakes | tutorials | various stuff | argh PHP!

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •