admin
FCKeditor
Uebersicht1
Uebersicht2
fachprojektscheine
fpdf
doc
acceptpagebreak.htm
addfont.htm
addlink.htm
addpage.htm
aliasnbpages.htm
cell.htm
close.htm
error.htm
footer.htm
fpdf.htm
getstringwidth.htm
getx.htm
gety.htm
header.htm
image.htm
index.htm
line.htm
link.htm
ln.htm
multicell.htm
output.htm
pageno.htm
rect.htm
setauthor.htm
setautopagebreak.htm
setcompression.htm
setcreator.htm
setdisplaymode.htm
setdrawcolor.htm
setfillcolor.htm
setfont.htm
setfontsize.htm
setkeywords.htm
setleftmargin.htm
setlinewidth.htm
setlink.htm
setmargins.htm
setrightmargin.htm
setsubject.htm
settextcolor.htm
settitle.htm
settopmargin.htm
setx.htm
setxy.htm
sety.htm
text.htm
write.htm
font
FAQ.htm
fpdf.css
fpdf.php
fpdf_protection.php
histo.htm
html2fpdf.php
htmltoolkit.php
install.txt
protection.zip
source2doc.php
import
livesearch
###menuframe.php
adm_anleg.php
adm_bearb.php
adminrechte.php
adminrechte_del.php
anmschluss.php
anwesenheit.php
ausg_aush.php
ausgabe.php
auswahl.php
bearbeiten.php
cross.jpg
detailansicht.php
doz_anleg.php
doz_bearb.php
doz_del.php
erfassen.php
expo.php
export.php
export_themen.php
fach_del.php
fach_useronline.php
fachliste.php
fachprojekt_bearbeiten.php
fachprojektbescheinigung_admin.php
hauptframe.htm
hauptframe_jahr.php
index.php
jahrgang.php
kennwortwechsel_admin.php
ldap_search.php
liste.php
livesearch_stud.php
login_doz.php
login_log.php
logout_admin.php
mail.php
mail_doz.php
mail_fach.php
mail_unangemeldet.php
mailadressen.php
mailcompare.php
menuframe.php
menuframe_28.09.2005.php
noteneingabe_admin.php
ok.gif
pass_back.php
registrierung.php
stud_bearb.php
stud_neubelegen.php
studbeleg.php
suche.php
topframe.htm
ubersicht.php
ubersicht_fachthemen.php
ubersicht_prio.php
unangemeldet.php
doz
fachprojekt
html2pdf_v4.03
htmlpurifier-4.10.0
images
prints
prints3
Kennwortwechsel.php
hauptframe.php
index.php
index_alt.php
index_db.php
index_frame.htm
index_ldap.php
login.php
logout.php
menuframe.htm
styles_pc.css
topframe.php
42 lines
1.4 KiB
HTML
Executable File
42 lines
1.4 KiB
HTML
Executable File
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<HTML>
|
|
<HEAD>
|
|
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
|
|
<TITLE>Header</TITLE>
|
|
<LINK TYPE="text/css" REL="stylesheet" HREF="../fpdf.css">
|
|
</HEAD>
|
|
<BODY>
|
|
<H2>Header</H2>
|
|
<TT>Header()</TT>
|
|
<H4 CLASS='st'>Version</H4>
|
|
1.0
|
|
<H4 CLASS='st'>Description</H4>
|
|
This method is used to render the page header. It is automatically called by AddPage() and
|
|
should not be called directly by the application. The implementation in FPDF is empty, so
|
|
you have to subclass it and override the method if you want a specific processing.
|
|
<H4 CLASS='st'>Example</H4>
|
|
<TABLE WIDTH="100%" BGCOLOR="#E0E0E0"><TR><TD>
|
|
<TT>
|
|
class PDF extends FPDF<BR>
|
|
{<BR>
|
|
function Header()<BR>
|
|
{<BR>
|
|
//Select Arial bold 15<BR>
|
|
$this->SetFont('Arial','B',15);<BR>
|
|
//Move to the right<BR>
|
|
$this->Cell(80);<BR>
|
|
//Framed title<BR>
|
|
$this->Cell(30,10,'Title',1,0,'C');<BR>
|
|
//Line break<BR>
|
|
$this->Ln(20);<BR>
|
|
}<BR>
|
|
}
|
|
</TT>
|
|
</TD></TR></TABLE><BR>
|
|
<H4 CLASS='st'>See also</H4>
|
|
<A HREF="footer.htm">Footer()</A>.
|
|
<HR STYLE="margin-top:1.2em">
|
|
<DIV ALIGN="CENTER"><A HREF="index.htm">Index</A></DIV>
|
|
</BODY>
|
|
</HTML>
|