Bir satırı güncelleştirmek için dinamik PHP mysql_query dizesini oluşturmak için çalışıyor ve güncelleştirilmiş satır geri alma

0 Cevap php

JQuery yüzden bir şey değiştiğinde bir ajax isteği çalışır ve ben sütununda, id, ve url değerleri geçmesi onChage .change() olayı izleyen bir form var.

Here i have the PHP code that should update the data.

My question is now how do i build the mySQl string dynamically. and how do i echo back the changes/updates that where just changed on the db.

İşte ben çalışmak için çalışıyorum PHP kodudur.

<?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
?>

Bu örnek, Tamam mı?

$sqlUpdate = 'UPDATE `plProducts`.`allPens` SET "{$collumn}" = "{$val}" WHERE `allPens`.`prodId` = "{$id}"LIMIT 1;';

0 Cevap