Código PHP:
<?PHP
if ($_GET["Kind"]<>'' or $_GET["price"]<>'' or $_GET["bedrooms"]<>'' or $_GET["type"]<>'' or $_GET["location"]<>'') {
echo '<iframe style="position:absolute; left:260px;top:190px;width:600px;height:720px;" name="frame1" id="frame1" src="Boutique/SearchResultTemplate.php?Kind="'.$_GET["Kind"].'&price='.$_GET["price"] .'&bedrooms='.$_GET["bedrooms"].' &type='.$_GET["type"].'&location='.$_GET["location"].' align="left" scrolling="yes" frameborder="no" class="main"></iframe>';
}
else
{
echo '<iframe style="position:absolute; left:260px;top:170px;width:600px;height:720px;" name="frame1" src="Boutique/Search.php" id="frame1" width = "600px" height = "991px" align="left" scrolling="yes" frameborder="no" class="main"></iframe>';
}
?>