+ Reply to Thread
Results 1 to 2 of 2

Thread: what is the code to add multiple cities or multiple zip codes?

  1. #1
    Join Date
    Jul 2005
    Location
    San Diego County
    Posts
    1,266

    Default what is the code to add multiple cities or multiple zip codes?

    /* Search City */
    $_REQUEST['search_city'][] = 'CSBS'; works for just that area

    but I want three cities, CSBS, CSBE, and CSBW

    or if I want to pull listings from multiple zip codes

    /* Search Zip Code */
    $_REQUEST['search_zip'][] = '92008'; works for one zip code


    But if I want to pull all the listings in 92008,92009,92010,92011
    If you are looking for San Diego Real Estate or you want to view San Diego MLS listings (or at least that portion of the data feed that SANDICOR allows us to display on our websites) go to a local San Diego County real estate Agent's Site.

    P.S. We Love Referrals!

  2. #2
    Aaron is online now Real Estate Webmasters Staff Aaron's Most Recent Blog Entry: Email etiquette Aaron is on a distinguished road
    Join Date
    Jun 2005
    Location
    Nanaimo
    Posts
    24,278

    Default Re: what is the code to add multiple cities or multiple zip codes?

    Just make a new line entry for each city - be sure you have the square brackets ( like you do ) Example:

    /* Search City */
    $_REQUEST['search_city'][] = 'CSBS';
    $_REQUEST['search_city'][] = 'CSBE';
    $_REQUEST['search_city'][] = 'CSBW';

    Same with the zip codes....

    /* Search Zip Code */
    $_REQUEST['search_zip'][] = '92008';
    $_REQUEST['search_zip'][] = '92009';


    Just in case others might read this .... older IDX's require you to do comma separated lists for the zip codes:

    $_REQUEST['search_zip'] = "12345,67890";

    This method will also work on the newer sites.

    Thank you,
    Aaron
    Real Estate Webmasters ( Programming )
    Client Resources | Tutorials | Suggested Enhancements

+ Reply to Thread

Similar Threads

  1. Snippet format for multiple cities?
    By thataway61 in forum REW IDX
    Replies: 1
    Last Post: 04-30-2008, 12:06 PM
  2. Replies: 14
    Last Post: 09-23-2007, 12:48 PM

Posting Permissions

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