您好我有一个下拉列表,其中包含一个db表中的值 我想在按钮上单击以将特定id的行保存在另一个表中 我有这个表格
<table class="table table-bordered table-responsive">
<tr>
<td><label class="control-label">Drop down list</label></td>
<td class="col-xs-4">
<?php
$stmt01 = $DB_con->prepare('SELECT * FROM dbtable WHERE chart in (458,459,461) ORDER BY id ASC');
$stmt01->execute();
if($stmt01->rowCount() > 0)
{
?>
<select class="form-control" name="value01">
<?php
while($row=$stmt01->fetch(PDO::FETCH_ASSOC))
{
extract($row);
echo '<option value="'.$row['id'].'">'.$row['id'].' '.$row['lastName'].' '.$row['firstName'].'</option>';
}
?>
</select>
<?php
}
?>
</td>
<td colspan="2" align="right" class="col-md-2"><button type="submit" name="btnsave01" class="btn btn-default">
<span class="glyphicon glyphicon-save"></span> Insert
</button>
</td>
</tr>
我的php是
require_once 'dbconfig.php';
if (isset($_POST['btnsave01']))
{
if (isset($_POST['value01']))
{
$chart = $_GET['chart'];
$chartDescription = $_GET['chartDescription'];
$lastName = $_GET['lastName'];
$firstName = $_GET['firstName'];
$location = $_GET['location'];
$empPic = $_GET['empPic'];
$q01 = $DB_con->prepare('INSERT INTO results01(chart,chartDescription,regNo,lastName,firstName,location,empPic) VALUES(:uchart, :uchartDescription, :uregNo, :ulastName, :ufirstName, :ulocation, uempPic)');
$q01->bindParam(':uchart',$chart);
$q01->bindParam(':uchartDescription',$chartDescription);
$q01->bindParam(':uregNo',$regNo);
$q01->bindParam(':ulastName',$lastName);
$q01->bindParam(':ufirstName',$firstName);
$q01->bindParam(':ulocation',$location);
$q01->bindParam(':uempPic',$empPic);
}
}
你可以帮我解决这个问题吗?
该按钮工作正常,但该值不存储在db表中
谢谢
答案 0 :(得分:1)
PHP
在:
VALUES
次查询中遗漏INSERT
。将uempPic
替换为:uempPic
。
INSERT
查询未执行。在最后bindParam
语句后添加以下行。
$q01->execute();
答案 1 :(得分:0)
此行错误请检查...
$q01 = $DB_con->prepare('INSERT INTO results01(chart,chartDescription,regNo,lastName,firstName,location,empPic) VALUES(:uchart, :uchartDescription, :uregNo, :ulastName, :ufirstName, :ulocation, :uempPic)');
答案 2 :(得分:0)
请查看您的准备声明:
$ q01 = $ DB_con-&gt; prepare(&#39; INSERT INTO results01(chart,chartDescription,regNo,lastName,firstName,location,empPic)VALUES(:uchart,:uchartDescription,:uregNo,:ulastName,: ufirstName,:ulocation,uempPic)&#39;);
您忘记添加&#34;:&#34;使用&#34; uempPic&#34;,请使用以下声明。
$ q01 = $ DB_con-&gt; prepare(&#39; INSERT INTO results01(chart,chartDescription,regNo,lastName,firstName,location,empPic)VALUES(:uchart,:uchartDescription,:uregNo,:ulastName,: ufirstName,:ulocation,:uempPic)&#39;);
您尚未包含execute语句。在bindParam之后添加以下语句。
$ q01-&GT;执行();
我认为您的插入问题会得到解决。