我正在关注一些视频教程。但每当我运行代码时,它都不会显示form.it在chrome上打印代码。 代码在。
<?php
require('config.php')
if(isset($_POST['submit'])
?>
<html>
<head>
</head>
<body>
<form action='regiser.php' method='POST'>
Name:<input type ='text' name='Name' placeholder='Name'><br>
Username:<input type ='text' name='Username' placeholder='Username'><br>
Password:<input type ='password' name='Password' placeholder='Password'> <br>
<input type='submit' name='submit' value='Register'>
</form>
</body>
</html>
答案 0 :(得分:0)
用
替换php代码<?php
require('config.php');
if(isset($_POST['submit'])){
}
?>
答案 1 :(得分:0)
不确定,但可能与此有关:
<form action='regiser.php' method='POST'>
我猜这里可能有拼写问题?用于此表单的文档的正确位置可能是 register.php ??
在假设代码方法不正确之前,请确保清除拼写错误。计算机不是心灵感应(但是)......他们不知道你的意思要输入什么。
答案 2 :(得分:0)
你的config.php中必须有一些错误,你已经使用require包含在你的文件中了。检查错误日志或启用php ini中的显示错误并重新启动服务器。