我有一个PHP包含,插入一个html表单到另一个html表单。当表单包含在内时,我现在有了两个表单标题。有没有一个php标签可以让我...
<form id="orderform">
<!-- <?php for the include FROM here?> -->
PROD:<input class="ProductName" type="text" size="75">|
Discount:<input class="Discount" type=
例如,当a.php脚本运行时,它将加载*a_form.html.php*。
在此表单中,有一个链接,当单击该链接时,将包含一个名为*b_form.html.php*的文件。
此时,页面上有两种形式。在运行*a_form.html.php*时加载的a.php。在此表单下面是另一个名为*b_form.html.php*的表单。
但是,如果用户通过错误单击链接并希望从页面中删除第二个表单,我已经放置了一个cancel按钮并编写了以下脚本:
if (isset($_POST['cancel']))
{
return; //this will remove the includ
我有一个HTML表单,它调用php文件来提交表单。我可以在验证失败时生成错误,但是这些错误需要显示在php文件中新创建的html页面上。
有没有一种方法可以将错误传递回原始表单以在表单上显示错误?
PHP文件中的代码片段如下所示:
/* If name is not valid show error message */
if (!preg_match("/^[a-zA-Z -]+$/", $first_name))
{
show_error("Name not valid");
}
……
function show_error($myError)
{
我已经构建了一个简单的表单,我想在不刷新页面的情况下发送该表单,因此我使用jQuery。当我提交表单时出现问题,但是process.php报告数据没有被转换,并且process.php打印消息“没有收到post”。下面是表单文件的代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script src="http://aja