-1

我正在使用 php mysql,我试图插入 3 个不同的表,但第三个表没有接收值,这是最后一个表。想法是我想在创建新表时将 user_id 插入到所有表中用户的帐户,这样当我想更新其他字段时,我只需引用那个 user_id,它是那些其他表中的外键。贝娄是我的代码:

<?php
    #connect to the db
    require_once('db.inc.php');
?>

<?php 
    $date_created = date('y-m-d h:i:s a');
    $username = (isset($_POST['username'])) ? trim($_POST['username']): '';
    $Previllage =(isset($_POST['Previllage']))? trim($_POST['Previllage']): '';

    #second tanble values 
    $title=(isset($_POST['title']))? trim($_POST['title']): '';
    $firstname=(isset($_POST['firstname']))? trim($_POST['firstname']): '';
    $lastname=(isset($_POST['lastname']))? trim($_POST['lastname']): '';
    $client_code=(isset($_POST['client_code']))? trim($_POST['client_code']): '';
    $job_approval=(isset($_POST['job_approval']))? trim($_POST['job_approval']): '';
    $address=(isset($_POST['address']))? trim($_POST['address']): '';
    $cell=(isset($_POST['cell']))? trim($_POST['cell']): '';
    $tel=(isset($_POST['tel']))? trim($_POST['tel']): '';
    $email=(isset($_POST['email']))? trim($_POST['email']): '';
    $company=(isset($_POST['company']))? trim($_POST['company']): '';
    $province=(isset($_POST['province']))? trim($_POST['province']): '';
    $ip_address=$SERVER['REMOTE_ADDR'];

    if(empty($_POST['firstname'])){
        exit();
    }

    #check box 
    if(isset($_POST['department_type'])) {
        $value = implode(",", $_POST['department_type']);   
    } else {
        $value = "";
    }
    #check box 

    #Image code 
    $target ='../t/images/';
    $target = $target.basename($_FILES['imagename']['name']);
    $pic = ($_FILES['imagename']['name']);
    ########################################################
    #end

    try {
        $query="INSERT INTO tish_user(username,Previllage,date_created)
                VALUES(:username,:Previllage,:date_created)";
        $insert = $con->prepare($query);
        $insert->execute(array(
                    ':username'=>$username,
                    ':Previllage'=>$Previllage,
                    ':date_created'=>$date_created)
                );

        # insert into another table
        $query="INSERT INTO tish_clientinfor(
                user_id,title,firstname,lastname,
                client_code,department_type,job_approval,province,
                company,address,cell,tel,email,date_registered)
                VALUES(
                LAST_INSERT_ID(),
                :title,:firstname,:lastname,
                :client_code,:department_type,:job_approval,:province,:company,:address,
                :cell,:tel,:email,
                :date_registered)";

        $insert = $con->prepare($query);
        $insert->execute(array(
                    ':title'=>$title,
                    ':firstname'=>$firstname,
                    ':lastname'=>$lastname,
                    ':client_code'=>$client_code,
                    ':department_type'=>$value,
                    ':job_approval'=>$job_approval,
                    ':province'=>$province,
                    ':company'=>$company,
                    ':address'=>$address,
                    ':cell'=>$cell,
                    ':tel'=>$tel,
                    ':email'=>$email,
                    ':date_registered'=>$date_created)
                );

        #intert into the security table 
        $query = "INSERT INTO tish_security(ip_address,user_id,date_registered)
                VALUES(
                :ip_address,
                LAST_INSERT_ID(),
                :date_registered)";
        $insert = $con->prepare($query);
        $insert->execute(array(
                    ':ip_address'=>$ip_address,
                    ':date_registered'=>$date_created)
                );

        # insert into another table
    } catch(PDOException $e) {
        echo $e->getMessage();
    }
?>
4

1 回答 1

1

在您的第三个查询中,当您使用LAST_INSERT_ID()它时,它会获取之前插入查询中的记录的 ID,即第二个查询,而不是第一个查询。您需要在第一个查询之后进行单独的查询以获取LAST_INSERT_ID(),将其存储在 PHP 中的变量中,并在其他两个查询中使用它。

于 2013-02-04T08:23:22.107 回答