每当我发布注册表单时,我都会使用有效的用户名将我的身份验证控制器弄乱,并显示错误消息。我不知道该怎么办,我已经寻求帮助,我基本上感到沮丧。有人可以看看我的项目,尤其是检查我的auth控制器吗?对我来说很重要
就像我提到的那样陷入困境,但是我现在需要的是帮助我更改身份验证控制器并使之正常工作的人,还请向我解释有关它的重要内容,也许我忘记了什么,等等。< / p>
https://github.com/tigerabrodi/blogcms
有我的项目,如果可以花点时间陪伴我,我会非常爱:p
class WaiverFPDF extends FPDF
{
// Page header
function Header()
{
// Arial bold 15
$this->SetFont('Arial','B',12);
// Position XY X=20, Y=25
$this->SetXY(15,25);
// Title
$this->Cell(179,10, 'Accident Waiver ','B','C');
// Line break
$this->Ln(11);
}
// Page footer
function Footer()
{
// Position from bottom
$this->SetY(-21);
// Arial italic 8
$this->SetFont('Arial','I',8);
$this->Ln();
// Current date
$this->SetFont('Arial','I',8);
// $this->Cell(179,10,$today,0,1,'R',false);
// $today= date('m/d/Y');
$this->Cell(115,10,' Participant Name',0,0,'C');
$this->Cell(150,10,'Date',0,'C',false);
// Page number
//$this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,0,'C');
}
}