传递变量不适用于新选项卡

时间:2017-01-07 16:00:36

标签: php pdo

我正在尝试打开一个带有变量的特定网址的新标签,但变量不会在第二个标签上传递。请帮我解决一下这个 。继承我的代码。

<?php
    $type= $_GET['type'];
    $brochure_id = $_GET['id'];
    $sql1 = "SELECT * from business_type WHERE business_id = '$type'";
    $q1= $conn->query($sql1);
    $q1->setFetchMode (PDO::FETCH_ASSOC);
    $location=" ";

        while($r1 = $q1->fetch())
        { 
            if($r1['business_type'] == "Hotel"){
                $location ="hotel.php";

            }
            else if($r1['business_type'] == "Restaurant"){
                $location ="restaurant.php";
            }
            else if($r1['business_type'] == "Resort"){
                $location ="resort.php";
            }
            else if($r1['business_type'] == "Spa"){
                $location ="spa.php";
            }
            else if($r1['business_type'] == "Entertainment"){
                $location ="entertainment.php";
            }
        }

    echo "<a  href='search-result-page-" . $location . "'?id='" . $brochure_id ."'' target='_blank' style='text-decoration: none'  >

    <div style='width: 260px; min-height: 30px; background-color:  rgba(180,180,180,0.5); position: absolute; z-index: 1000; font-size: 17px; padding: 5px; color: black'>" . $r['business_name'] . "</div>
    <img src='". $r['display_pic'] ."' width='260px' height='150px' />
    </a>
    </td>";

        if($maxcol==$column){
                echo "</tr>";
                $column=0;
                }
            }
    ?>

0 个答案:

没有答案