how do you place a serch engine with percific requirements like when you look for a house
Apartment
bed
bath
location
how do you place a serch engine with percific requirements like when you look for a house
Apartment
bed
bath
location
try freefind.com
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:
Just remember to replace username and password, and replace the database and table to what you named it.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]";
}
?>
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!
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.
There are currently 1 users browsing this thread. (0 members and 1 guests)