dongmu2517 2014-03-26 16:12
浏览 39
已采纳

使用表单选项值作为PHP变量来执行准备好的SQL语句

I just started using PHP last week and I've been searching around for a solution for this quite extensively but I can't wrap my brain around the answers I've come across.

I essentially have a form that looks like this in index.html:

<form method="post" action="actionTest.php">
    <select name="courseID">
        <option value = "111">Course 1</option>
        <option value = "222"> Course 2 </option>
        <option value ="333"> Course 3 </option>
    </select>
    <input type="submit" />
</form> 

And then a prepared statement in my actionTest.php file

//variable for selected option value?
//$courseSelect = [???]

//query
$sql = "SELECT * FROM courses WHERE course_id = ?";

//prepare the query
$q = $con->prepare($sql);

//execute the statement
$q->execute();

//setting fetch mode for statement
$q->setFetchMode(PDO::FETCH_ASSOC);

//display fetched data
while($r = $q->fetch()){
    echo $r['name'] . "
";
    echo $r['course_id'] . "
";
    echo $r['description'] . "
";
    echo "</br>";
}

I've written a simple PHP script that will echo what value has been selected when you submit the form, so I know I can retrieve the value I need. I guess I'm generally confused about how to store the option value in a variable to pass to the query. Any help or references to help are greatly appreciated!

  • 写回答

2条回答 默认 最新

  • dongzhan1570 2014-03-26 16:18
    关注

    By reading from the manual (http://nl1.php.net/pdo.prepared-statements) you can bind your param in this way:

    $q = "SELECT * FROM courses WHERE course_id = ?";
    $q->bindParam(1, $myValue, PDO::PARAM_INT);
    
    // insert one row
    $myValue = $_POST['courseID'];
    $q->execute();
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog