2

我做基本的电子商务系统。这是我的系统,不是会员,不是购物,只是有视觉。

我想做地址工具栏输入信息。这个信息,列出我的查询mysql。

我的 html 下拉菜单;

<?php
    $cats = mysql_query("SELECT * FROM category");
    if($cats === FALSE){
        die(mysql_error());
    }
    while($row= mysql_fetch_array($cats )){
    ?>
        <li><a href="itemCat=<?php echo $row['link'];?>"><?php echo $eow['categoryName']; ?></a></li>
    <?php
    }
?>

我想用 INNERJOIN 显示当前页面来获取我的数据。

我想;

<?php
    if($_GET['itemCat']=="ctbKopuk"){
        //INNERJOIN with tables
    }
?>

我们怎么做?

感谢您的关注。

4

1 回答 1

1

That notice means that there is no itemCat in your url.

Check if it exists first, using

if (array_key_exists('itemCat', $_GET))

Your code would become:

<?php
    if(array_key_exists('itemCat', $_GET) && $_GET['itemCat'] == "ctbKopuk"){
        //INNERJOIN with tables
    }
?>
于 2013-07-28T07:48:21.687 回答