<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
它是一个投诉登记表。由字段创建的不是 在提交时提交其//值。
<?php
//to display contents after posting in same page
if (isset($_POST['submit']))
{
$createdby = $_POST["createdby"];
//它是一个投诉登记表。由字段创建的不是 在提交时提交其//值。
echo "createdby:".$createdby." <br>";
}
//它是一个投诉登记表。由字段创建的不是 在提交时提交其//值。
echo "<script>window.close();</script>";
?>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="stylesheet" type="text/css" href="../user.css"/>
<title>User registration</title>
//for validation
<script src="jquery.js" type="text/javascript"></script>
<script src="jquery.validate.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#usertype").validate();
});
//even date time picker is not working
$(function() {
$( "#datepicker" ).datepicker();
});
</script>
</head>
//its a complaint registration form.The created by field is not submitting its //value on on submit.
<body>
//the form containing the fields
<form id="usertype" action=" " method="get" >
<center>
<h1> User Registration Page </h1>
<div id="content">
***<ul class="user">
<li class="label">Created by</li>
<li class="field">
<input type="text" id="createdby" name"createdby" class="required error"/>
</li>
</ul>***
//提交表单
<input type="submit" name="submit" value="Submit"/>
</div>
</center>
</form>
</body>
</html>
//它是一个投诉注册表单。按字段创建的字段不会在提交时提交其值。强文
答案 0 :(得分:1)
您创建的字段
的名称属性中缺少等号答案 1 :(得分:0)
将表单方法设置为GET时,您无法获得$ POST值。 要么改变表单方法,要么改变php代码的一部分:
if (isset($_GET['submit']))
{
$createdby = $_GET["createdby"];
祝你好运, 弗拉基米尔
答案 2 :(得分:0)
<input type="text" id="createdby" name="createdby" class="required error"/>
因此您的输入字段不存在且$ _POST [“createdby”];为空
答案 3 :(得分:0)
只需将表单操作更改为发布
即可<form id="usertype" action=" " method="get" > to
<form id="usertype" action=" " method="post" > or
将$ _POST更改为$ _GET
<?php
//to display contents after posting in same page
if (isset($_POST['submit']))
{
$createdby = $_POST["createdby"];
?>
到
<?php
//to display contents after posting in same page
if (isset($_GET['submit']))
{
$createdby = $_GET["createdby"];
?>