所以我意识到问题只是在sql命令更新, 我需要它插入到特定的行和特定的col,行是由我通过会话的用户ID确定..我之前做的只是我不确定如何搜索id和该行的值?
顺便说一句" mysqli_real_escape_string"使SQL更安全吗?
include_once 'dhb.inc.php';
$etherwallet = $_POST['name'];
$idbridge1 = $_SESSION['u_id'];
if (empty($etherwallet)) {
exit();
} else {
if (strlen($etherwallet) != 42 ) {
exit();
} else {
$sql = "UPDATE users WHERE user_id = '$idbridge1' SET eth_wallet = '$etherwallet'";
mysqli_query($conn, $sql);
exit();
}
}