尝试构建动态PHP mysql_query字符串以更新行并取回更新后的行

前端之家收集整理的这篇文章主要介绍了尝试构建动态PHP mysql_query字符串以更新行并取回更新后的行 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个jQuery跟踪onChage .change()事件的形式,因此当发生更改时,它会运行ajax请求,并在列,id和url中传递值.

在这里,我有应该更新数据的PHP代码.
我的问题是现在如何动态构建MysqL字符串.
以及如何回显刚刚在数据库上更改的更改/更新.

这是我尝试使用的PHP代码.

<?PHP require_once('Connections/connect.PHP'); ?>

 <?PHP  
    $id = $_GET['id'];
    $collumn = $_GET['collumn'];
    $val = $_GET['val'];
 ?>


<?PHP 
    MysqL_select_db($myDB,$connection);

  // here i try to build the query string and pass in the passed in values
   $sqlUpdate = 'UPDATE `plProducts`.`allPens` SET `$collumn` = '$val' WHERE `allPens`.`prodId` = '$id' LIMIT 1;';

  // here i want to echo back the updated row (or the updated data) 
  $seeResults = MysqL_query($sqlUpdate,$connection);
  echo  $seeResults
?>

这个例子好吗?

$sqlUpdate = 'UPDATE `plProducts`.`allPens` SET "{$collumn}" = "{$val}" WHERE `allPens`.`prodId` = "{$id}"LIMIT 1;';
最佳答案
使用字符串串联运算符..

$sqlUpdate = 'UPDATE `plProducts`.`allPens` SET `' . $collumn .'` = \'$val\' WHERE `allPens`.`prodId` = '. $id . ' LIMIT 1;';
MysqL_query(MysqL_escape_string($sqlUpdate));

当然,这表示存在大量SQL injection漏洞.

猜你在找的MySQL相关文章