Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Apache
: 172.26.7.228 | : 3.145.100.40
Cant Read [ /etc/named.conf ]
5.6.40-24+ubuntu18.04.1+deb.sury.org+1
www-data
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
var /
www /
html /
gcg /
Excel_Writer /
[ HOME SHELL ]
Name
Size
Permission
Action
OLE
[ DIR ]
drwxr-xr-x
BIFFwriter.php
7.35
KB
-rwxr-xr-x
Format.php
30.08
KB
-rwxr-xr-x
PEAR.php
10
B
-rwxr-xr-x
Parser.php
65.27
KB
-rwxr-xr-x
Validator.php
6.23
KB
-rwxr-xr-x
Workbook.php
53.5
KB
-rwxr-xr-x
Worksheet.php
109.57
KB
-rwxr-xr-x
Writer.php
3.22
KB
-rwxr-xr-x
package.xml
6.9
KB
-rwxr-xr-x
test.php
2.61
KB
-rwxr-xr-x
test.xls
4
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : test.php
<?php require_once 'Writer.php'; // Send HTTP headers to tell the browser what's coming $xls =& new Spreadsheet_Excel_Writer("test.xls"); $xls->setVersion(8); // Add a worksheet to the file, returning an object to add data to $sheet =& $xls->addWorksheet('Binary Count'); $sum=0; // Create the format of the merged cells // Using setAlign('center') works best (same as 'align' => 'center) $format_a = array('bordercolor' => 'red', 'left' => 1, 'bottom' => 1, 'right' => 1, 'top' => 1, 'bold'=>'1', 'size' => '14', 'color'=>'green', 'align' => 'center'); // Add the format. This could be done all together. // I keep it separated for ease of use $format =& $xls->addFormat($format_a); // Now apply the format to the cells you want to merge // This is the same as: // $sheet->write(1,0,'',$format); // $sheet->write(1,1,'',$format); // $sheet->write(1,2,'',$format); // $sheet->write(1,3,'',$format); // $sheet->write(1,4,'',$format); // I just think it's cleaner for($n=0; $n<=5; $n++) $sheet->write(1,$n,'',$format); // Write in the title or whatever you want in the merged cells $sheet->write(1,1,'My Sample Report',$format); // Now apply the merge to the cells $sheet->mergeCells(1,1,1,3); /* ****************************************** * The rest of this just populates the sheet * with some data and totals it up. ****************************************** */ // Write some numbers for ( $i=2;$i<15;$i++ ) { // Use PHP's decbin() function to convert integer to binary if($i == 1 ) { $format =& $xls->addFormat(array('bold'=>'1', 'size' => '12', 'color'=>'red')); $sheet->write($i,0,decbin($i), $format); } else { $sheet->write($i,0,decbin($i)); } $sum = $sum + decbin($i); } $format_b = array('bordercolor' => 'blue', 'left' => 1, 'bottom' => 1, 'right' => 1, 'top' => 1, 'bold'=>'1', 'size' => '14', 'color'=>'green'); $format =& $xls->addFormat($format_b); $sheet->write($i,0,$sum,$format); $format_c = array('bordercolor' => 'blue', 'left' => 1, 'bottom' => 1, 'right' => 1, 'top' => 1, 'bold'=>'1', 'size' => '14', 'color'=>'green', 'align' => 'center' ); $format =& $xls->addFormat($format_c); $sheet->write($i,1,'TOTAL',$format); // Finish the spreadsheet, dumping it to the browser $xls->close(); ?>
Close