gpt4 book ai didi

PHP 表单不保存到表中

转载 作者:搜寻专家 更新时间:2023-10-31 22:05:18 26 4
gpt4 key购买 nike

我有一个名为 service.php 的页面,它使用模态窗口打开表单。表单上的操作是 service.php。

<div class="modal hide fade" id="myServiceModal" tabindex="-1" role="dialog" aria-labelleby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">Service Failure Form</h3>
</div>
<div class="modal-body">
<p>
<form class="well-small" action="service.php" method="POST" id="serviceModalForm" name="serviceModalForm">
<label>Container Selected</label>
<input type="text" name="containerNumber" id="containerNumber" />
<label>Bol Selected</label>
<input type="text" name="bolNumber" id="bolNumber" />
<input type="submit" id="modal-form-submit" name="submit" class="btn btn-success btn-small" href="#" value="Save" />

<?php

$bol = $_POST['bolNumber'];
$container = $_POST['containerNumber'];

if(isset($_POST['submit'])){
$sql_query_string =
"INSERT INTO import_view_svc_fail (bol, container_num) VALUES
('$bol', '$container');";
if(mysql_query($sql_query_string)){
echo ("<script language='javascript'>
window.alert('Added New Service Failure')
</script>");
}
?>
</form>

此表单有效,并保存到适当的表中。

这是我的问题:我必须将该表单移动到另一个名为 dispatch.php 的页面。我所做的只是复制代码,并将其放在 dispatch.php 上。

我将表单的操作更改为 dispatch.php,这就是我认为问题开始的地方。当我将操作改回 service.php 时,无论出于何种原因,它都有效。

当我从 service.php 中完全删除表单时,dispatch.php 上的表单不再有效。

我已尽一切努力使这项工作成功。我从 service.php 中删除了所有代码。我什至从文件夹中删除了整个文件。

任何见解都会有所帮助。

最佳答案

你告诉脚本做什么,但你没有告诉它去做。

为了执行您的 SLQ 查询,您必须使用 mysql_query($sql_query_string);

您还需要连接到您的数据库。看看http://php.net/manual/de/function.mysql-connect.php获取更多信息。

关于PHP 表单不保存到表中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19773333/

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