我是 PHP 的新手,只是尝试简单的形式,但 insert.php 页面首先存在问题,我的数据库由 4 条记录(id、name、phonenumber、date)组成,id 列是自动递增页面。
我创建以显示信息到页面调用索引 php 它运行良好,但问题是 insert.php 页面该页面未加载并且无法插入值并去查看索引 php 页面中的新插入值
<?php
if(isset($_post['name'])){
$mysqli = new mysqli('localhost','root','','interdet');
$statement =$mysqli->prepare("INSERT INTO detectives(name)VALUES(?,?)";
$statement->bind_param('ss',$_POST['name']);
$statement->execute();
echo "Done! <a href='index.php'>Go here see new detective </a>";
}
else {
?>
<form action="insert.php" method="POST">
<p>Name : <input type="text" name="name" /> <P>
<p><input type="submit"/></p>
</form>
<?php } ?>