Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
contracts /
fpdf186 /
tutorial /
Delete
Unzip
Name
Size
Permission
Date
Action
20k_c1.txt
5.38
KB
-rw-r--r--
2025-08-19 14:41
20k_c2.txt
7.14
KB
-rw-r--r--
2025-08-19 14:41
CevicheOne-Regular-Licence.txt
4.41
KB
-rw-r--r--
2025-08-19 14:41
CevicheOne-Regular.php
3.68
KB
-rw-r--r--
2025-08-19 14:41
CevicheOne-Regular.ttf
34.74
KB
-rw-r--r--
2025-08-19 14:41
CevicheOne-Regular.z
15.13
KB
-rw-r--r--
2025-08-19 14:41
countries.txt
442
B
-rw-r--r--
2025-08-19 14:41
index.htm
837
B
-rw-r--r--
2025-08-19 14:41
logo.png
2.32
KB
-rw-r--r--
2025-08-19 14:41
makefont.php
152
B
-rw-r--r--
2025-08-19 14:41
tuto1.htm
4.67
KB
-rw-r--r--
2025-08-19 14:41
tuto1.php
160
B
-rw-r--r--
2025-08-19 14:41
tuto2.htm
5.49
KB
-rw-r--r--
2025-08-19 14:41
tuto2.php
783
B
-rw-r--r--
2025-08-19 14:41
tuto3.htm
8.75
KB
-rw-r--r--
2025-08-19 14:41
tuto3.php
1.73
KB
-rw-r--r--
2025-08-19 14:41
tuto4.htm
9.57
KB
-rw-r--r--
2025-08-19 14:41
tuto4.php
2.19
KB
-rw-r--r--
2025-08-19 14:41
tuto5.htm
12.03
KB
-rw-r--r--
2025-08-19 14:41
tuto5.php
2.27
KB
-rw-r--r--
2025-08-19 14:41
tuto6.htm
11.6
KB
-rw-r--r--
2025-08-19 14:41
tuto6.php
2.4
KB
-rw-r--r--
2025-08-19 14:41
tuto7.htm
8.26
KB
-rw-r--r--
2025-08-19 14:41
tuto7.php
238
B
-rw-r--r--
2025-08-19 14:41
Save
Rename
<?php require('../fpdf.php'); class PDF extends FPDF { // Page header function Header() { // Logo $this->Image('logo.png',10,6,30); // Arial bold 15 $this->SetFont('Arial','B',15); // Move to the right $this->Cell(80); // Title $this->Cell(30,10,'Title',1,0,'C'); // Line break $this->Ln(20); } // Page footer function Footer() { // Position at 1.5 cm from bottom $this->SetY(-15); // Arial italic 8 $this->SetFont('Arial','I',8); // Page number $this->Cell(0,10,'Page '.$this->PageNo().'/{nb}',0,0,'C'); } } // Instanciation of inherited class $pdf = new PDF(); $pdf->AliasNbPages(); $pdf->AddPage(); $pdf->SetFont('Times','',12); for($i=1;$i<=40;$i++) $pdf->Cell(0,10,'Printing line number '.$i,0,1); $pdf->Output(); ?>