如何使用jquery selectable向mysql提交数据

时间:2016-12-22 17:54:01

标签: php jquery html mysql jquery-ui

我有这样的代码:https://jsfiddle.net/tcuapb16/2/

我希望当我点击提交时,它会将所选图像的值发送到我的php文件,在那里它将数据插入到我的数据库中。但我真的不知道如何将它连接到php。

PHP文件如下所示:

<?php  
$link = mysqli_connect("localhost","root","","db2");
@include_once('set.php');   
if(!isset($_SESSION["userid"])) {  //if is not logged, return to main page
    Header("Location: index.php");
    exit;
}
$itemid = // value from images selected  
$id = $_SESSION["userid"];  
mysqli_query($link,"UPDATE users SET `itemid`='$itemid' WHERE `userid`='$id'");  
Header("Location: index.php");  
exit;  
?>

0 个答案:

没有答案