- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在开发一个使用 SharedPreferences 登录的应用程序。如果用户想从应用程序内更新其信息,下一步是添加更新数据库的 Activity 。我已经写了代码,但是当我运行它时,JSON似乎有问题。我已经使用断点进行了检查,并且值都正常,但是“s=”部分显示 Error: Call to a member function bind_param() on bool in C:\Users\wamp64\www\App.php on line <i>189</i>
所以,我进入我的 php 并检查了第 189 行,但我没有看到任何错误。我使用了精确的登录/注册语法,它的效果非常好。谢谢!
首先,我将添加 .php 中的第 189 行:
$stmt->bind_param("ssss", $nume, $prenume, $email, $telefon);
更新信息.java
class ActualizareUser extends AsyncTask<Void, Void, String> {
@Override
protected String doInBackground(Void... voids) {
//creating request handler object
RequestHandler requestHandler = new RequestHandler();
//creating request parameters
HashMap<String, String> params = new HashMap<>();
params.put("nume", Nume);
params.put("email", Email);
params.put("prenume", Prenume);
params.put("telefon", Telefon);
params.put("id", id);
//returing the response
return requestHandler.sendPostRequest(URLs.URL_UPDATE_USER, params);
}
@Override
protected void onPreExecute() {
super.onPreExecute();
//displaying the progress bar while user registers on the server
}
@Override
protected void onPostExecute(String s) {
super.onPostExecute(s);
//hiding the progressbar after completion
try {
//converting response to json object
JSONObject objs = new JSONObject(s);
//if no error in response
if (!objs.getBoolean("error")) {
Toast.makeText(getApplicationContext(), objs.getString("message"), Toast.LENGTH_SHORT).show();
//getting the user from the response
JSONObject userJson = objs.getJSONObject("user");
//creating a new user object
User user = new User(
userJson.getString("Nume"),
userJson.getString("Prenume"),
userJson.getString("Adresa_mail"),
userJson.getString("Numar_telefon"),
userJson.getString("Parola"),
userJson.getInt("ID_UTILIZ")
);
//storing the user in shared preferences
SharedPrefManager.getInstance(getApplicationContext()).userLogin(user);
finish();
startActivity(new Intent(getApplicationContext(), Profil.class));
} else {
Toast.makeText(getApplicationContext(), "A aparut o eroare", Toast.LENGTH_SHORT).show();
}
} catch (JSONException e) {
e.printStackTrace();
}
}
}
App.php ,更新部分:
case 'updateuser':
if(isTheseParametersAvailable(array('nume','email','prenume', 'telefon', 'id'))){
$prenume = $_POST["prenume"];
$nume =$_POST["nume"];
$email =$_POST["email"];
$telefon =$_POST["telefon"];
$id =$_POST["id"];
$stmt = $conn->prepare("SELECT ID_UTILIZ FROM informatii_persoane WHERE ID_UTILIZ = ?");
$stmt->bind_param("s", $id);
$stmt->execute();
$stmt->store_result();
if($stmt->num_rows < 1){
$response['error'] = true;
$response['message'] = 'Nu se poate identifica un cont';
$stmt->close();
}else{
$stmt = $conn->prepare("UPDATE INTO informatii_persoane (Nume, Prenume, Adresa_mail, Numar_telefon) VALUES (?, ?, ?, ?)");
$stmt->bind_param("ssss", $nume, $prenume, $email, $telefon);
if($stmt->execute()){
$stmt = $conn->prepare("SELECT ID_UTILIZ, Nume, Prenume, Adresa_mail, Numar_telefon, Parola FROM informatii_persoane WHERE Adresa_mail = ?");
$stmt->bind_param("s",$email);
$stmt->execute();
$stmt->bind_result($id, $nume, $prenume, $email, $telefon, $parola);
$stmt->fetch();
$user = array(
'Nume'=>$nume,
'Prenume'=>$prenume,
'Adresa_mail'=>$email,
'Numar_telefon'=>$telefon,
'Parola'=>$parola,
'ID_UTILIZ'=>$id
);
$stmt->close();
$response['error'] = false;
$response['message'] = 'Date actualizate cu success';
$response['user'] = $user;
}
}
}else{
$response['error'] = true;
$response['message'] = 'A aparut o eroare';
}
break;
更新的.php:
case 'updateuser':
if(isTheseParametersAvailable(array('nume','email','prenume', 'telefon', 'id'))){
$prenume = $_POST["prenume"];
$nume =$_POST["nume"];
$email =$_POST["email"];
$telefon =$_POST["telefon"];
$id =$_POST["id"];
$stmt = $conn->prepare("SELECT ID_UTILIZ FROM informatii_persoane WHERE ID_UTILIZ = ?");
$stmt->bind_param("s", $id);
$stmt->execute();
$stmt->store_result();
$rows = $stmt->num_rows;
$stmt->close();
if($rows < 1){
$response['error'] = true;
$response['message'] = 'Nu se poate identifica un cont';
}else{
$stmt = $conn->prepare("UPDATE INTO informatii_persoane (Nume, Prenume, Adresa_mail, Numar_telefon) VALUES (?, ?, ?, ?)");
$stmt->bind_param("ssss", $nume, $prenume, $email, $telefon);
if($stmt->execute()){
$stmt1 = $conn->prepare("SELECT ID_UTILIZ, Nume, Prenume, Adresa_mail, Numar_telefon, Parola FROM informatii_persoane WHERE Adresa_mail = ?");
$stmt1->bind_param("s",$email);
$stmt1->execute();
$stmt1->bind_result($id, $nume, $prenume, $email, $telefon, $parola);
$stmt1->fetch();
$stmt1->close();
$user = array(
'Nume'=>$nume,
'Prenume'=>$prenume,
'Adresa_mail'=>$email,
'Numar_telefon'=>$telefon,
'Parola'=>$parola,
'ID_UTILIZ'=>$id
);
$response['error'] = false;
$response['message'] = 'Date actualizate cu success';
$response['user'] = $user;
}
$stmt->close();
}
}else{
$response['error'] = true;
$response['message'] = 'A aparut o eroare';
}
break;
informatii_persoane结构:
create table if not exists informatii_persoane (
ID_utiliz int auto_increment primary key,
Nume varchar(50),
Prenume varchar(50),
Adresa_mail varchar (50) unique ,
Numar_telefon text ,
Notificare_SMS enum('Da','Nu'),
Notificari_aplicatie enum('Da','Nu'),
Parola varchar(50),
nr_alerte_semnalizate int,
nr_alerte_corecte int,
nr_alerte_partial_corecte int,
nr_lerte_incorecte int, -- vezi aici cum faci %
scor float -- il facem din cele doua de mai sus
);
最佳答案
$stmt = $conn->prepare("Update informatii_persoane set Nume = ?, Prenume = ?, Adresa_mail = ?, Numar_telefon = ? where ID_UTILIZ = ?");
$stmt->bind_param("ssssi", $nume, $prenume, $email, $telefon, $id);
The problem lies in $stmt->close();
您尚未关闭 select 语句然后启动 insert 语句。您可以同时打开多个语句。但您最终必须关闭它们。
Also, you have written the INSERT query wrong.
检查一下
UPDATE INTO informatii_persoane (Nume, Prenume, Adresa_mail, Numar_telefon) VALUES (?, ?, ?, ?)
更改为
INSERT INTO informatii_persoane (Nume, Prenume, Adresa_mail, Numar_telefon) VALUES (?, ?, ?, ?)
/**************************************************** **************/
Important Note
另外,如果你想找出查询中的错误, 在给出错误的行的下方和上方添加 echo $conn->error;
关于php - 将帐户信息更新到数据库不起作用,PHP 错误 : "Call to a member function",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59301454/
2 个不同的租户(租户 A 中的订阅 A 和租户 B 中的订阅 B) 我们在 Azure 云中有一个订阅,并且我们已经设置了 Azure Keyvault。我们可以在那里创建 key 并使用其中一个
账户-B: 在具有 4 个安全组的 vpc(vpc-B) 中包含 RDS。 我为账户 A 创建了承担角色 具有以下政策: [![在此处输入图像描述][1]][1] [![在此处输入图像描述][2]][
我想问一下如果我使用 Google Apps 帐户而不是 Google 帐户 users.create_login_url() 函数来生成登录页面。 Google 会自动要求我使用 Google 帐户
我正在使用帐户 (accounts-hithub)。现在工作正常,但现在我想更新当前用户。 我尝试过类似的事情 Accounts.update({_id: Meteor.user()._id}, {.
ngrok 的配置文件只允许一个 authtoken 行,您作为用户可用的所有资源(例如,保留的主机名)都基于关联的帐户使用授权 token 。 如果您有多个 ngrok 帐户——例如,一个专业(工作
作为 Coursera 数据科学家类(class)设置的一部分,我错误地将目录 test-repo 链接到错误的帐户。所以,在声明中: git remote add origin https://gi
我想使用 Keycloak 设置 Google 联盟,但仅限于我公司的授权用户。 设置 Google 联盟允许任何 Google 帐户登录。 我查看了 Keycloak 上的身份验证流程,但一直找不到
我正在使用 web3 制作自己的桌面 BSC 钱包。目前我正在使用 private_key = "private key" account = w3.eth.account.privateKeyToA
我们的 Subversion 存储库和 Phabricator 安装有不同的身份验证系统。 但似乎 Phabricator 假定提交作者和 Phabricator 帐户将相同。文档中没有提到提交作者如
我正在使用 codio.com 。从那里我使用 ubuntu 终端登录 Heroku,但它给了我以下错误。我已阅读帮助 page还 。它说使用 MFA 您必须使用浏览器进行登录。但问题是浏览器没有从
我正在尝试第一次发布我的应用程序。如果我没记错的话,为了把admob 广告放到我的应用程序中,我应该有一个admob 帐户。 我的问题是我是否需要使用与打开 Play 商店开发者帐户相同的 gmail
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 3年前关闭。 Improve thi
OS: Ubuntu 18.04 Server Docker 18.3 CE 我使用 PuTTY SSH session 从我的 Windows 10 笔记本电脑登录到服务器。 我的本地 Window
在 Heroku CLI(我使用 WSL/Ubuntu)中,我想查看我当前登录的是哪个 Heroku 帐户。 命令 heroku login开始一个新的登录 session ,但我想知道哪个帐户当前处
除了 [sa] 用户,我在 sysadmin 中没有用户 不幸的是,我以 [sa] 用户身份登录并禁用了它 那么我无法启用它,我该怎么做才能再次启用它? 最佳答案 您必须使用 sqlcmd.exe与
我想找到所有具有索引或已注册身份的 polkadot 帐户;类似于 https://polkascan.io/polkadot/account/identities和 https://polkasca
我想从我的服务器应用程序访问类记录。 我创建了一个服务帐户,但无法从我的 Google 帐户创建的教室中获取记录。 我如何获得访问权限?谢谢 最佳答案 创建服务帐户是不够的。您还必须执行域范围的委派并
我有相同的超链接: HyperLink skype = new HyperLink(); skype.NavigateUrl = "skype:username?call"; 当用户按下它时,他重定向
我和这里的一些人正在创业。我们目前正在使用 Google OpenID API 来管理注册和登录我们的应用程序,但我们希望迁移到更简单的用户注册模型。为此,我们需要知道是否有办法检测电子邮件(不是 g
尝试访问我的 sitemap.xml 时,我收到此错误: 'Account' object has no attribute 'get_absolute_url' on line 112. 109.
我是一名优秀的程序员,十分优秀!