将数据插入多个不同的数据表 [英] Inserting data into multiple different data tables

查看:37
本文介绍了将数据插入多个不同的数据表的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图将数据插入到多个数据表中.它仅适用于单个数据表,我只是想知道如何将数据插入到两个数据表中.在过去的几个小时里,我一直在为这个问题苦苦挣扎,似乎无法深入了解它.如果有人有任何建议,请告诉我.:)

I was trying to insert data into multiple data tables. It's only working for single data tables, I'm just wondering how I would be able to insert data into two data tables. I've been struggling with this issue for the past few hours and can't seem to get to the bottom of it. If anyone has any advice please let me know. :)

    <?php
/* Attempt MySQL server connection. Assuming you are running MySQL
server with default setting (user 'root' with no password) */
$link = mysqli_connect("localhost","ivodatat","","");


if($link === false){
    die("ERROR: Could not connect. " . mysqli_connect_error());
}

// Inputs for security 
$fname = mysqli_real_escape_string($link, $_REQUEST['fname']);
$sname = mysqli_real_escape_string($link, $_REQUEST['sname']);
$address = mysqli_real_escape_string($link, $_REQUEST['address']);
$email = mysqli_real_escape_string($link, $_REQUEST['email']);
$phone = mysqli_real_escape_string($link, $_REQUEST['phone']);
$mac = mysqli_real_escape_string($link, $_REQUEST['mac']);
$installer = mysqli_real_escape_string($link, $_REQUEST['installer']);
$status = mysqli_real_escape_string($link, $_REQUEST['status']);

// Insert Query 
$sql1 = "INSERT INTO leadlist (fname, sname, address, email, phone, mac, installer, status) VALUES ('$fname', '$sname', '$address', '$email', '$phone', '$mac', '$installer', '$status')";

$sql2 = "INSERT INTO $installer (fname, sname, address, email, phone, mac, installer, status) VALUES ('$fname', '$sname', '$address', '$email', '$phone', '$mac', '$installer', '$status')";



if (mysqli_multi_query($link, $sql1, $sql2)){



                mysqli_close($conn);
                header("Location: installercontrol.php");




                exit;

} else{
    echo "ERROR: Could not able to execute $sql. " . mysqli_error($link);
}

// Close The Connection
mysqli_close($link);
?>

推荐答案

使用 mysqli_multi_query 您需要将查询相互附加,因为它只需要一个查询参数.来自手册:

To use mysqli_multi_query you need to append the queries to each other as it only takes one query argument. From the manual:

执行一个或多个用分号连接的查询.

Executes one or multiple queries which are concatenated by a semicolon.

试试这个:

mysqli_multi_query($link, $sql1 . ';' . $sql2)

您可能还应该更新您的错误消息:

You should probably also update your error message:

echo "ERROR: Could not able to execute $sql1;$sql2. " . mysqli_error($link);

这篇关于将数据插入多个不同的数据表的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆