gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-29 22:40:50 26 4
gpt4 key购买 nike

如何更改以下代码以允许我从另一个表(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>

最佳答案

那么,您可以在表单提交给 location_id 的表中,该 ID 是链接到位置表的键。

然后您需要做的就是执行一个 sql 查询,在其中使用 LIKE 选择值(请参阅 MySQL LIKE - 我认为 w3schools 很好地涵盖了这一点)

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

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

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

关于php - SQL PHP 可搜索表单字段添加到新数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29359279/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com