+ Reply to Thread
Results 1 to 2 of 2

Thread: Snippet format for multiple cities?

  1. #1
    Join Date
    Nov 2004
    Location
    Orange Beach, AL
    Posts
    2,359

    Default Snippet format for multiple cities?

    I am trying to get multiple cities in snippet. Tried the following:

    // city name
    $_REQUEST['snippet_city'] = "Spanish Fort";
    $_REQUEST['snippet_city'] = "Daphne";
    $_REQUEST['snippet_city'] = "Fairhope";
    $_REQUEST['snippet_city'] = "Point Clear";

    It only displays last request. What is the proper format for multiple cities?

    Thanks!
    Cal
    Gulf Shores Real Estate | Lake Lanier Real Estate | Madison MS Real Estate

    The Gulfshoreslife.com Team of Keller Williams Alabama Gulf Coast serves the Baldwin County Alabama Real Estate market from The Eastern Shore of Mobile Bay to the Southern Shores of the Alabama Gulf Coast: Orange Beach, Gulf Shores, Fort Morgan, Point Clear, Fairhope, Montrose, Daphne, Spanish Fort, AL. For more information on AL Gulf Coast Real Estate, please contact me or visit our website.

  2. #2
    Aaron is offline 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: Snippet format for multiple cities?

    $_REQUEST['snippet_city'][] = "Spanish Fort";
    $_REQUEST['snippet_city'][] = "Daphne";
    $_REQUEST['snippet_city'][] = "Fairhope";
    $_REQUEST['snippet_city'][] = "Point Clear";

    Just need to add []
    Aaron
    Real Estate Webmasters ( Programming )
    Client Resources | Tutorials | Suggested Enhancements

+ Reply to Thread

Similar Threads

  1. snippet help please
    By GreggRio in forum REW IDX
    Replies: 24
    Last Post: 07-07-2008, 10:11 AM
  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