SQL PHP可搜索表单字段添加到新数据库

时间:2015-03-31 01:50:00

标签: php mysql

如何更改以下代码以允许我从另一个表(data2)中提取数据,并将其发布为我执行其他表(名称,位置,生物)。基本上我想要另一个表单字段,我可以搜索从另一个表中查找项目,并添加到此表中。

Example Image

<?php
require 'db/connect.php';

$error      = ""; //variable to hold our form error message
$success    = ""; //variable to hold our success message

if(isset($_POST['create'])){
$name       = trim($_POST['name']);
$position   = trim($_POST['position']);
$bio        = trim($_POST['bio']);

if(empty($name) && empty($position) && empty($bio)){
    $error = "You must fill all fields.";
}else{
    $insert = $db->prepare("INSERT INTO staff (name, position, bio,     joined) VALUES (?, ?, ?, NOW())");
    $insert->bind_param(sss, $name, $position, $bio);
    if($insert->execute()){
        //$success = "Staff added successfully!";
        header("location:index.php");
    }

}

}
?>

<!DOCTYPE html>
<html lang="en">
<head>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <div id="wrapper">
        <h1>Create New Staff</h1>
        <span class="error"><?php if(isset($error)) echo $error;?></span>
        <span class="success"><?php if(isset($success)) echo         $success;?>        </span>
        <form action="" method="post">
            <table class="table">
                <tr>
                    <td><label for="name">Name:</label></td>
                    <td><input type="text" id="name" name="name"></td>
                </tr>
                <tr>
                    <td><label for="position">Position:</label></td>
                    <td><input type="text" id="position" name="position"></td>
                </tr>               
                <tr>
                    <td><label for="bio">Bio:</label></td>
                    <td><textarea id="bio" name="bio"></textarea></td>
                </tr>
                <tr>
                    <td></td>
                    <td><button type="submit" class="create"     name="create">CREATE</button>&nbsp;&nbsp;&nbsp;&nbsp;<a class="btn"     href="index.php">BACK</a></td>
                </tr>
            </table>
        </form>
    </div>
</body>
</html>

1 个答案:

答案 0 :(得分:0)

你可以在表格中提交表单提交到location_id,这是一个链接到locations表的键。

然后您需要做的就是执行一个SQL查询,在这里您可以使用LIKE选择值(请参阅MySQL LIKE - 我认为w3schools涵盖了这一点)

您可以在Ajax中调用此函数来检查每次按键。

或者将所有位置加载到隐藏元素,当输入被聚焦时,它们会出现,当您键入时,您可以使用JavaScript来隐藏那些不匹配的位置。

我会写一个例子,但我在手机上。希望这有点帮助。