我正在使用flexi auth库。现在我需要在警告框中显示一些验证错误消息。如何显示请帮助!
目前正在显示如下。
if($this->form_validation->run()==FALSE)
{
// code for error
$data['message_type'] = 1;
$data['message'] = 'Below fields required ';
$this->load->view('common/message',$data)
}
答案 0 :(得分:1)
错误会抛出您的视图,因此请尝试查看警报错误: -
<?php if(validation_errors() != false) { echo '<script>alert("Please check the error marked in red.")</script>'; }?>
或您想要的任何错误: -
<?php if(form_error('loanamount')) { echo '<script>alert("error")</script>'; }?>
如果警告错误,请尝试
<?php if(form_error('loanamount')) { ?> <script>alert('<?php echo form_error('loanamount');?>');</script> <?php }?>
错误将根据像
这样的规则显示$this->form_validation->set_rules('loanamount', 'Loan Amount', 'trim|required|xss_clean');
您正在发送$data
,因此您也可以在警报