The official web hosting company for the BlueVoda Website Builder. You are currently viewing our support forum as a guest which gives you limited (read only) access. By joining our support forum you will be able to ask questions, participate in discussions and receive assistance. Registration is fast and simple. Click Here To Join our support forum today! We look forward to helping you build and publish a fantastic website.
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();
Comment