admin管理员组文章数量:1242851
I want an editable textarea after all my content in a TCPDF document.
With the below command, I added this textarea, but there comes no new page. If I set the rows to a higher number, the box is getting bigger, but still no new page.
$content .= '<textarea cols="80" rows="16" name="text2"></textarea>';
Does there exists a textarea which I can make bigger or smaller like I want?
my footer is this:
public function Footer() {
if ($this->last_page_flag) {
$this->SetY(-15);
$this->SetFont('helvetica', 'N', 11);
$text = "Seite ".$this->getAliasNumPage().'/'.$this->getAliasNbPages();
$this->Cell(0, 5, "Unterschrift: Druckdatum: ".date("d.m.Y H:m:s")." ".$text, 0, false, 'L', 0, '', 0, false, 'T', 'M');
} else {
$this->SetY(-15);
$this->SetX(-114);
$this->SetFont('helvetica', 'N', 11);
$text = "Seite ".$this->getAliasNumPage().'/'.$this->getAliasNbPages()."";
$this->Cell(115, 5, $text, 0, false, 'R', 0, '', 0, false, 'T', 'M');
}
}
If I only set text the page break runs fine. Only the textareas are the problems.
本文标签: phpTCPDF textarea overlapping FooterStack Overflow
版权声明:本文标题:php - TCPDF: textarea overlapping Footer - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1740090324a2223956.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论