Announcement

Collapse
No announcement yet.

important search

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • important search

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

  • #2
    Re: important search

    try freefind.com

    Comment


    • #3
      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!

      Comment


      • #4
        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.

        Comment

        Working...
        X