+ Reply to Thread
Results 1 to 4 of 4

Thread: Limiting Search Results on Page

  1. #1
    Join Date
    Mar 2009
    Location
    Brewster, NY
    Posts
    206

    Default Limiting Search Results on Page

    What code do I use to limit the number of results per page ?
    One Stop Comprehensive Real Estate & Mortgage Services

    Putnam County NY Real Estate - Heritage Hills Somers NY - Brewster NY Real Estate

  2. #2
    Join Date
    Dec 2006
    Posts
    393

    Default Re: Limiting Search Results on Page

    $_REQUEST['page_limit'] = 15;


    Of course, adjust the number as needed.
    MJA
    PM me to explore contextual links!
    Reno Real Estate | Carson City Real Estate | Minden Real Estate

  3. #3
    Join Date
    Aug 2010
    Location
    Jamaica
    Posts
    18

    Default Re: Limiting Search Results on Page

    You can limit the result that the database returns by using LIMIT in your query.

    e.g. SELECT * FROM properties LIMIT 0,10 ... returns the first 10
    e.g. SELECT * FROM properties LIMIT 10,10 ... returns the next set of 10

  4. #4
    Join Date
    May 2007
    Location
    far east
    Posts
    690

    Default Re: Limiting Search Results on Page

    Depends on what language you use for your site/webpage

+ Reply to Thread

Similar Threads

  1. Replies: 2
    Last Post: 02-22-2009, 04:21 PM

Tags for this Thread

Posting Permissions

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