Results 1 to 4 of 4

Thread: important search
      
   

  1. #1
    egt112 Guest

    Default important search

    how do you place a serch engine with percific requirements like when you look for a house
    Apartment
    bed
    bath
    location

  2. #2
    WSBlue's Avatar
    WSBlue is offline Brigadier General
    Join Date
    Apr 2006
    Posts
    1,416

    Default Re: important search

    try freefind.com

  3. #3
    Antonio878's Avatar
    Antonio878 is offline Master Sergeant
    Join Date
    Sep 2007
    Posts
    68

    Default Re: important search

    If you have information in your phpmyadmin, it is best to make your own search engine, simply create a form with text boxes apartment, bed, bath and location and then the second page it will search your information in your phpmyadmin database, this is what the php page looks like:

    PHP Code:
    $con mysql_connect("localhost","username","password");
    if (!
    $con)
      {
      die(
    'Could not connect: ' mysql_error());
      }

    mysql_select_db("username_database"$con);

    $qt=mysql_query("select * from table WHERE Apartment='$Apartment' AND bed='$bed' AND bath='$bath' AND location='$location'");
    echo 
    mysql_error();

    while(
    $build=mysql_fetch_array($qt)){
    echo 
    "$build[Apartment]";
    }
    ?> 
    Just remember to replace username and password, and replace the database and table to what you named it.

    This code above will show the name of the apartment., You can edit the bottom, you can show what ever you want.
    Check out:
    Great Windmill (A Place Where You Can Have Fun!)

    You can do so much on the website, check it out!

  4. #4
    Marincky's Avatar
    Marincky is offline General
    Join Date
    Apr 2006
    Location
    Warwickshire, UK
    Posts
    4,564

    Default Re: important search

    You need a special script writing for this. You need to find someone who can do this for you.
    Don't aim for success if you want it; just do what you love and believe in, and it will come naturally.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49