Results 1 to 2 of 2

Thread: Sorting using Power Search

  1. #1
    Join Date
    Sep 2002
    Posts
    26

    Question Sorting using Power Search

    Hi,

    I'm using INDEXU as an Audio Library.

    I've made a custom field called "Language" and would like the users to be able to list the records according to Language.

    Now I know currently INDEXU doesn't have a feature for sorting records but using Power Search a user can list records by typing in the key word in the approprate filed.

    Is it possible somehow to create a link such as

    http://www.yourwebsite.com/power_sea...keyword=french

    so that when a person clicks on this link it shows all the records which are for the language french.

    If I sound confusing anywhere, please ask for clarifications.

    Vakil

  2. #2
    Join Date
    Sep 2002
    Posts
    14

    Default You can sort the searches quite easily

    Hi,

    You can sort any of the searches.

    For power_search.php, on line 133, change

    $query .= " order by bid desc";

    to

    $query .= " order by bid desc, title asc";

    or whatever you want such as

    $query .=" order by bid desc, language asc, title asc";

    where bid, language, title, etc. are the field names in the mysql database.

    In the regular search, look for lines that start with

    $query = "select ...

    and you can add order by parameters. This is helpful in sorting the results of all the database queries the way you want.

    Herb

Similar Threads

  1. power search doesn't search certain cats
    By Rob Picken in forum v5.x
    Replies: 9
    Last Post: 06-15-2004, 02:03 PM
  2. Replies: 0
    Last Post: 02-13-2004, 08:56 PM
  3. Replies: 3
    Last Post: 10-02-2002, 12:58 PM
  4. Search
    By joyorudis in forum v3.2
    Replies: 0
    Last Post: 09-18-2002, 07:50 AM
  5. Search Box on third party sites !
    By ideavirus in forum v3.2
    Replies: 0
    Last Post: 08-31-2002, 07:59 AM

Posting Permissions

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