我正在尝试在表单上显示重复的错误,但是此函数使页面崩溃并且页面无法加载。如何为此配置文件 php.ini ?
这是我要在表单页面上显示错误消息的功能:
public function getError($error) {
if(!in_array($error, $this->errorArray)) {
$error = "";
}
return "<span class='errorMessage'>$error</span>";
}
这是我要用来获取数组错误的函数:
private function validateEmails($em) {
$checkEmailQuery = mysqli_query($this->con,"SELECT email FROM member_forms WHERE email='$em'");
if(mysqli_num_rows($checkEmailQuery) != 0) {
array_push($this->errorArray, Strings::$emExists);
return;
}
}
这些函数会对数据库进行仔细检查,如果发生错误,<?php echo $account->getError(Strings::$emExists); ?>
应该显示该错误,但不会显示该错误,并且页面也不会加载。
发生错误时,将一直持续到错误出现为止,但它不会呈现任何内容,并且HTML页面的正文为空
<div class="form-group" style="padding-left: 0px;">
<p>
<?php echo $account->getError(Strings::$fnCharacters); ?>
<div class="col-md-3 indent-small">
<div class="form-group internal">
<input class="form-control" id="firstName"
name="firstName" type="text"
placeholder="First Name"
style="width: 180%;/*! padding-right: ; */margin: 0px 0px 0px 12px;"
value="<?php getInputValue('firstName')?>" required>
</div>
</div>
<div class="col-md-3 indent-small"
style="margin-left: 15px;width: 25%;">
<div class="form-group internal">
<input class="form-control" id="lastName"
name="lastName" type="text" placeholder="Last Name"
style="width: 188%;/*! padding-left: 33px; */margin-left: 56px;"
value="<?php getInputValue('lastName')?>" required>
</div>
</div>
</div>
</div>
<div class="form-group">
<label class="control-label col-md-2 col-md-offset-2" for="email"
style="margin-left: 0;width: 28%;/*! float: left; */">E-mail
Address</label>
<div class="col-md-6">
<div class="form-group">
<div class="col-md-11">
<p>
<?php echo $account->getError(Strings::$emExists); ?>
<input class="form-control" id="email" name="email"
type="email" placeholder="Your E-mail..."
style="width: 156%;"
required>
</p>
</div>
</div>
</div>
</div>
答案 0 :(得分:1)
我使用了您发布的代码在我的本地主机上完全可以正常工作。您是否检查过用于新主机的服务器?
如果不同,则相同的代码可能无法在其他服务器上正常工作。有几个因素会影响这一点。 Click here以获得提示。
您还可以使用phpinfo()功能。可能有助于进一步调试。
答案 1 :(得分:0)
我很确定这段代码应该可以解决此错误:
if (isset($_POST['Update'])) {
/* a bunch of code to insert into the DB */
// if inserted echo the following messges
if ($r) {
echo "<script> alert('Saved')</script>";
}else{
echo "<b>Oops! we have an issu </b>";
}
}