+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 15

Thread: Snippets, snippets who's got the snippets :)

  1. #1

    Default Snippets, snippets who's got the snippets :)

    I'm looking for a snippet to display listings within a given price range.

    I thought I saw a post somewhere for this already.

    Does this exists? If so, how can i get it.

    In addition, is there a list somewhere of available snippets?

    Thanks in advance.
    Panama City Homes for Sale, Panama City Real Estate and Panama City Beach Condos

    The Panama City Real Estate Team at Keller Williams Success Realty - Your source for Panama City real estate sales, services and information. For additional information on Panama City and Panama City Beach Real Estate, contact me or visit our website.

  2. #2
    Join Date
    Oct 2004
    Location
    Florida
    Posts
    2,132

    Default Re: Snippets, snippets who's got the snippets :)

    Jessie,
    This is what mine looks like:
    Code:
    <?
    
    $_REQUEST['snippet_include'] = true;
    $_REQUEST['price_min'] = "400000";
    $_REQUEST['price_max'] = "600000";
    
    $_REQUEST['city'][] = "330";
    $_REQUEST['city'][] = "331";
    
    include $_SERVER['DOCUMENT_ROOT'] . "/idx/search.php";
    ?>

  3. #3

    Default Re: Snippets, snippets who's got the snippets :)

    Thanks Kyle, appreciate it

    How do you know what your city code is?

    Not working though
    Last edited by jessiesc; 10-11-2007 at 11:01 AM.
    Panama City Homes for Sale, Panama City Real Estate and Panama City Beach Condos

    The Panama City Real Estate Team at Keller Williams Success Realty - Your source for Panama City real estate sales, services and information. For additional information on Panama City and Panama City Beach Real Estate, contact me or visit our website.

  4. #4
    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
    23,433

    Default Re: Snippets, snippets who's got the snippets :)

    Hi Jessie,

    IDX snippets are different depending on which feed or IDX code that your website is using. I'll have a programmer set up a sample snippet for you to use to make more.

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

  5. #5

    Default Re: Snippets, snippets who's got the snippets :)

    Aaron,

    You continue to be THE MAN

    Thanks
    Panama City Homes for Sale, Panama City Real Estate and Panama City Beach Condos

    The Panama City Real Estate Team at Keller Williams Success Realty - Your source for Panama City real estate sales, services and information. For additional information on Panama City and Panama City Beach Real Estate, contact me or visit our website.

  6. #6
    Join Date
    Oct 2004
    Location
    Florida
    Posts
    2,132

    Default Re: Snippets, snippets who's got the snippets :)

    Sorry for interfering Aaron. I thought it might be worth a try.

  7. #7
    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
    23,433

    Default Re: Snippets, snippets who's got the snippets :)

    No Problem - I can always use the help

    Jessie: Steven will create an example snippet for you.
    Aaron
    Real Estate Webmasters ( Programming )
    Client Resources | Tutorials | Suggested Enhancements

  8. #8
    Join Date
    Aug 2006
    Location
    Nanaimo, BC
    Posts
    1,556

    Default Re: Snippets, snippets who's got the snippets :)

    Hello Jessie

    You are well on your way to making snippets.

    The first part of this snippet is good.

    Code:
    <?php 
    $_REQUEST['snippet_include'] = true;
    
    $_REQUEST['price_min'] = "400000";
    $_REQUEST['price_max'] = "600000";
    To add Areas use

    Code:
    $_REQUEST['city'][] = "Alford";
    $_REQUEST['city'][] = "Altha";
    And at the end of the snippet use

    Code:
    include $_SERVER['DOCUMENT_ROOT'] . "/idx/search.php";
    ?>
    If you would like to only search for some of the property types

    Code:
    $_REQUEST['proptype'][] = "DSF";
    $_REQUEST['proptype'][] = "MOB";
    Your property type codes are

    ASF = ASF/Attached Individual Unit
    CND = Condominium
    DSF = Detached Single Family
    FRM = Farm
    MOB = Mobile/Manufactured
    MUL = Dup/Tri/Quad Multi Unit

    To limit by bedrooms or bathrooms
    Code:
    $_REQUEST['bedrooms'] = "2";
    $_REQUEST['bathrooms'] = "2";
    Let me know if you need any more help.
    Steven Barre
    Systems Administrator / Programmer
    Real Estate Webmasters
    Red Hat Certified Engineer | Zend Certified Engineer | Microsoft Certified Professional
    "To err is human... to really foul up requires the root password."

  9. #9

    Default Re: Snippets, snippets who's got the snippets :)

    Thanks Steven,

    Works like a charm. You now THE NEW MAN!!!
    Panama City Homes for Sale, Panama City Real Estate and Panama City Beach Condos

    The Panama City Real Estate Team at Keller Williams Success Realty - Your source for Panama City real estate sales, services and information. For additional information on Panama City and Panama City Beach Real Estate, contact me or visit our website.

  10. #10
    Join Date
    Apr 2004
    Location
    Nanaimo
    Posts
    15,992

    Default Re: Snippets, snippets who's got the snippets :)

    Just a quick note Jessie, I recently (Within the last few months) added a forum to the customer support section for "REW IDX" - this would have been more appropriate in that forum, so I have moved it.

    Not complaining, just pointing it out for the future
    Starting LEC 7 soon but it won't be called LEC 7 - LEC 2012 coming soon!

+ Reply to Thread
Page 1 of 2 1 2 LastLast

Posting Permissions

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