!C99Shell v. 2.1 [PHP 8 Update] [02.02.2022]!

Software: Apache/2.4.53 (Unix) OpenSSL/1.1.1o PHP/7.4.29 mod_perl/2.0.12 Perl/v5.34.1. PHP/7.4.29 

uname -a: Linux vps-2738122-x 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64 

uid=1(daemon) gid=1(daemon) grupos=1(daemon) 

Safe-mode: OFF (not secure)

/opt/apex_tdfonline/proyectos/toba_referencia/php/varios/   drwxr-xr-x
Free 14.78 GB of 61.93 GB (23.86%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     creacion_pdf_manual.php (1.04 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

require_once(toba_dir() . '/php/3ros/ezpdf/class.ezpdf.php');

$pdf = new Cezpdf();
$pdf->selectFont(toba_dir() . '/php/3ros/ezpdf/fonts/Helvetica.afm');
$pdf->ezText('Tabla'14);

//-- Cuadro con datos
$opciones = array(
        
'splitRows'=>0,
        
'rowGap' => 1,
        
'showHeadings' => true,    
        
'titleFontSize' => 9,
        
'fontSize' => 10,
        
'shadeCol' => array(0.9,0.9,0.9),
        
'outerLineThickness' => 0.7,
        
'innerLineThickness' => 0.7,
           
'xOrientation' => 'center',
           
'width' => 500
);
$datos = array(
    array(
'col1' => 1'col2' => 2),
    array(
'col1' => 3'col2' => 4),
);
$pdf->ezTable($datos, array('col1'=>'Columna 1''col2' => 'Columna 2'), 'Titulo Tabla'$opciones); 

$pdf->ezText("\nCódigo fuente"14);
$pdf->ezText("\n".file_get_contents(__FILE__), 10);

$tmp $pdf->ezOutput(0);
header('Cache-Control: private');
header('Content-type: application/pdf');
header('Content-Length: '.strlen(ltrim($tmp)));
header('Content-Disposition: attachment; filename="Archivo.pdf"');
header('Pragma: no-cache');
header('Expires: 0');
 
echo 
ltrim($tmp);

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.1 [PHP 8 Update] [02.02.2022] maintained byC99Shell Github | Generation time: 0.829 ]--