dqt20140129 2015-03-31 01:50
浏览 57
已采纳

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

How do I alter the following code to allow me to extract data from another table (data2), and post it as I did the others(name,position,bio). Basically I want another form field that I can search from to find an item from another table, and add into this one.

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条回答 默认 最新

  • doubi8965 2015-03-31 01:58
    关注

    Well you could have in the table that the form submits to a location_id that is a key linked to the locations table.

    Then all you need to do is do an sql query where you select values using LIKE (see MySQL LIKE - I think w3schools covers this well)

    You could call this function in Ajax to check every key press.

    Alternatively load all the locations to a hidden element and when the input is focused they appear and as you type you use JavaScript to hide those that don't match.

    I would write an example but I'm on my phone. Hope this helps a little.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀