我的测试PHP提交代码:
<?php
if($_POST['create']) { echo $_POST['name']; }
?>
我的 HTML 表单代码:
<form class="form-horizontal" id="ConsultantSignUp" method="post" action="#">
<div class="control-group">
<label class="control-label" for="inputForename">Name</label>
<div class="controls">
<input type="text" class="input-xlarge" id="name" name="name" rel="popover" data-content="Enter your first and last name." data-original-title="Full Name">
</div>
</div>
<div class="control-group">
<label class="control-label" for="input01"></label>
<div class="controls">
<button type="submit" class="btn btn-success" rel="create" title="create" id="create" name="create">Create My Account</button>
</div>
</div>
</form>
我的错误是提交后它甚至没有打印出名称。我检查了 PHP 错误日志,它说:
PHP 注意:未定义索引:在第 2 行的 /Users/ * * /sites/signup.php 中创建
第 2 行是 'if($_POST['create']) { echo $_POST['name']; }'。
我知道 isset() 方法可以删除未定义索引通知,但是,我只想测试我的表单!