微信小程式修改後資料庫指定的值加後臺php程式碼
小程式修改資料庫php程式碼
<?php
header("Content-Type: text/html;charset=utf-8");
$type=$_GET['type'];
$id=$_GET['id'];
$servername = "localhost";
$username = "root";
$password = "root";//伺服器中連線資料庫的密碼
$dbname = "test";//使用的資料庫名
// 建立連線
$conn = mysqli_connect($servername, $username, $password, $dbname);
if($conn){
$sql="update images set type='$type' where id='$id'";
$que=mysqli_query($conn,$sql);
if($que){
echo "修改成功";
}else{
echo "修改失敗";
}
}
?>
****注***** images是資料表,type是欄位, 用GET的方式修改images資料表裡的type欄位裡的值,小程式用的是data-id賦變數值查詢的方法,這裡用的是固定的值myid:1的方法給予id值。
小程式程式碼
ar that = this
wx.request({
url: 'http://www.lxjx.com/xiao.php', // 僅為示例,並非真實的介面地址
method: 'GET',
data: {
id:that.data. myid,
type: that.data.mydata,
},
header: {
'content-type': 'application/json' // 預設值
},
success(res) {
console.log(res.data)
}
})