这将在空白页上显示回声。
$existsQuery = "select count(*) as count from entry where emailaddress like '".$_POST[emailaddress]."'";
$existsResult = mysqli_query($con, $existsQuery);
if($existsResult->fetch_object()->count > 0)
{
echo "email already exist";
/* header('index.html?email=exists'); */
}
我想在主 html 页面上的提交按钮下显示回声。使用 URL 是一种好方法吗?我该怎么做?