作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的 php 文件...我想在成功插入第二个表后更新第一个表,我要正确选择并插入,但我想要更新的行在插入数据后没有得到更新。
if($_SERVER['REQUEST_METHOD']=='POST')
{
$full_name=$_POST['full_name'];
$email_address=$_POST['email_address'];
$contact_number=$_POST['contact_number'];
$gender=$_POST['gender'];
$location=$_POST['location'];
$standard=$_POST['standard'];
$institute=$_POST['institute'];
$code=$_POST['code'];
$sql = "SELECT * FROM activations WHERE code='$code' AND status='not used'";
$check = mysqli_fetch_array(mysqli_query($conn,$sql));
if(isset($check)==null)
{
echo 'exist';
}
else
{
$sql1="INSERT INTO students(full_name, email_address, contact_number, gender, location, standard, institute) VALUES('$full_name','$email_address','$contact_number','$gender','$location','$standard','$institute')";
}
if (mysqli_query($conn, $sql1)==true)
{
$sql2="UPDATE activations SET status='in use' WHERE code='$code';
} else {
echo "Error updating record: " . mysqli_error($conn);
}
谁能告诉我如何用 php mysqli 程序方式编写这个。
最佳答案
您忘记调用mysqli_query()
来执行UPDATE
。
if (mysqli_query($conn, $sql1)) {
$sql2="UPDATE activations SET status='in use' WHERE code='$code'";
if (!mysqli_query($conn, $sql2)) {
echo "Error updating activations: " . mysqli_error($conn);
}
} else {
echo "Error inserting student: " . mysqli_error($conn);
}
关于php - 在php中插入另一个表后如何更新表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38407149/
我是一名优秀的程序员,十分优秀!