doulan3966 2016-10-09 18:33
浏览 10
已采纳

如何处理三个以上的PHP GET变量从MySQL数据库中选择数据[重复]

This question already has an answer here:

I have a PHP page called get.php that has access to MySQL Database. I use one table called: MyTable

In the table I have more than on row. Every info has an id that I use to get the other info based on it:

$sql = "SELECT * FROM `MyTable` WHERE `id`='" . $_GET["var1"]'";
$result = $conn->query($sql);
.
.
.

So when I go to:

localhost/bb/t2/get.php?var1=1

I get the other info like Name of the info by fetching the rows.

BUT I want to deal with more than one variable:

localhost/bb/t2/get.php?var1=1&var2=2&var4=4&...

So I can get the info of every id and not one only.

I want to handle any number of variables and get it's data.

Thank you!

</div>
  • 写回答

2条回答 默认 最新

  • douershuang7356 2016-10-09 18:45
    关注

    First, it would be easier to use an array for specifying multiple ids in the URL:

    http://localhost/bb/t2/get.php?var[]=1&var[]=2&var[]=4&...
    

    This way, in your PHP code $_GET['var'] will be an array and will contain all values specified in the URL.

    Next, you have to make sure all array items (the ids) are numeric. There are many solutions for this, for example skipping non-numeric values:

    // make sure parameters are OK
    if (is_array($_GET['var'])) {
        // eliminate non-numeric values
        $ids = array_filter($_GET['var'], function($item) {
            return is_numeric($item);
        });
    }
    else {
        // invalid arguments; throw exception or do something else
    }
    

    Finally, you have to use WHERE IN in your query (and verify of course if there are actually some values in the $ids array before executing the SQL query):

    if (!empty($ids)) {
        $sql = "SELECT * FROM `MyTable` WHERE `id` IN (" . implode(",", $ids) . ")";
    }
    else {
        //TODO: no numeric ids specified, do something else...
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 nginx中的CORS策略应该如何配置
  • ¥30 信号与系统实验:采样定理分析
  • ¥100 我想找人帮我写Python 的股票分析代码,有意请加mathtao
  • ¥20 Vite 打包的 Vue3 组件库,图标无法显示
  • ¥15 php 同步电商平台多个店铺增量订单和订单状态
  • ¥15 关于logstash转发日志时发生的部分内容丢失问题
  • ¥17 pro*C预编译“闪回查询”报错SCN不能识别
  • ¥15 微信会员卡接入微信支付商户号收款
  • ¥15 如何获取烟草零售终端数据
  • ¥15 数学建模招标中位数问题