当我尝试运行Insert.php时,它返回相同的代码并且不再继续,无法理解我的代码或设置有什么问题。我是编码世界的新手。
这是我的代码:
<?php
$con = mysqli_connect('localhost','root','');
if(!$con)
{
echo 'Not connected to server';
}
if(!mysqli_select_db($con,'tutorial'))
{
echo 'Not selected database';
}
$Name = $_POST['username'];
$Email = $_POST['email'];
$sql = "INSERT INTO person (Name,Email) VALUES ('$Name','$Email')";
if(!mysqli_query($con,$sql))
{
echo 'Not inserted';
}
else{
echo 'Inserted';
}
header("refresh:2; url=index.html");
?>
答案 0 :(得分:0)
header("Location:index.html");
试试这个,我希望它能在您的代码中运行。