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 | : 18.219.255.63
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 /
bnu /
ExcelWriterXML /
[ HOME SHELL ]
Name
Size
Permission
Action
Documentation
[ DIR ]
drwxr-xr-x
ExcelWriterXML.php
16.29
KB
-rwxr-xr-x
ExcelWriterXML_Sheet.php
15.83
KB
-rwxr-xr-x
ExcelWriterXML_Style.php
23.71
KB
-rwxr-xr-x
example.php
562
B
-rwxr-xr-x
example2.php
2.95
KB
-rwxr-xr-x
example3_db.php
980
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : example3_db.php
<?php /** * Example using built in MYSQL DB functions * @package ExcelWriterXML * @subpackage examples * @filesource */ include('ExcelWriterXML.php'); $xml = new ExcelWriterXML('my file.xml'); $xml->showErrorSheet(true); /***************** ADD multiple tables all at once ***********/ $tables = array( 'dctran', 'dcstud', ); $xml->mysqlTableDump('localhost','root','','resultsg_cug',$tables,null); /***************** ADD one table at a time ***********/ //$xml->mysqlTableDump('localhost','root','','resultsg_cug','dctran','dctran2'); //$xml->mysqlTableDump('localhost','root','','resultsg_cug','dcstud','dcstud2'); /***************** ADD a sheet, execute a query against that sheet ***********/ $qSheet = $xml->addSheet('My Query'); $query = "select dc.fappno as Application_No, dc.fregno as Roll_No, dc.fname as Name from dctran dc where fpaystatus = 'success'"; $qSheet->mysqlQueryToTable('localhost','root','',$query); $xml->sendHeaders(); $xml->writeData(); ?>
Close