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 | : 52.14.176.111
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 /
sdu /
libs /
adodb5 /
tests /
[ HOME SHELL ]
Name
Size
Permission
Action
a.mdb
1.96
MB
-rwxr-xr-x
benchmark.php
2.03
KB
-rwxr-xr-x
client.php
3.99
KB
-rwxr-xr-x
pdo.php
1.73
KB
-rwxr-xr-x
test-active-record.php
2.28
KB
-rwxr-xr-x
test-active-recs2.php
1.39
KB
-rwxr-xr-x
test-datadict.php
7.44
KB
-rwxr-xr-x
test-perf.php
909
B
-rwxr-xr-x
test-pgblob.php
1.99
KB
-rwxr-xr-x
test-php5.php
2.48
KB
-rwxr-xr-x
test-xmlschema.php
1.28
KB
-rwxr-xr-x
test.php
54.17
KB
-rwxr-xr-x
test2.php
573
B
-rwxr-xr-x
test3.php
896
B
-rwxr-xr-x
test4.php
4.56
KB
-rwxr-xr-x
test5.php
1.35
KB
-rwxr-xr-x
test_rs_array.php
679
B
-rwxr-xr-x
testcache.php
806
B
-rwxr-xr-x
testdatabases.inc.php
17.49
KB
-rwxr-xr-x
testgenid.php
731
B
-rwxr-xr-x
testmssql.php
1.99
KB
-rwxr-xr-x
testoci8.php
2.31
KB
-rwxr-xr-x
testoci8cursor.php
2.9
KB
-rwxr-xr-x
testpaging.php
2.26
KB
-rwxr-xr-x
testpear.php
873
B
-rwxr-xr-x
testsessions.php
2.08
KB
-rwxr-xr-x
time.php
520
B
-rwxr-xr-x
tmssql.php
1.84
KB
-rwxr-xr-x
xmlschema-mssql.xml
832
B
-rwxr-xr-x
xmlschema.xml
961
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : testpaging.php
<?php /* V4.80 8 Mar 2006 (c) 2000-2008 John Lim (jlim#natsoft.com.my). All rights reserved. Released under both BSD license and Lesser GPL library license. Whenever there is any discrepancy between the two licenses, the BSD license will take precedence. Set tabs to 4 for best viewing. Latest version is available at http://adodb.sourceforge.net */ error_reporting(E_ALL); include_once('../adodb.inc.php'); include_once('../adodb-pager.inc.php'); $driver = 'oci8'; $sql = 'select ID, firstname as "First Name", lastname as "Last Name" from adoxyz order by id'; //$sql = 'select count(*),firstname from adoxyz group by firstname order by 2 '; //$sql = 'select distinct firstname, lastname from adoxyz order by firstname'; if ($driver == 'postgres') { $db = NewADOConnection('postgres'); $db->PConnect('localhost','tester','test','test'); } if ($driver == 'access') { $db = NewADOConnection('access'); $db->PConnect("nwind", "", "", ""); } if ($driver == 'ibase') { $db = NewADOConnection('ibase'); $db->PConnect("localhost:e:\\firebird\\examples\\employee.gdb", "sysdba", "masterkey", ""); $sql = 'select distinct firstname, lastname from adoxyz order by firstname'; } if ($driver == 'mssql') { $db = NewADOConnection('mssql'); $db->Connect('JAGUAR\vsdotnet','adodb','natsoft','northwind'); } if ($driver == 'oci8') { $db = NewADOConnection('oci8'); $db->Connect('','scott','natsoft'); $sql = "select * from (select ID, firstname as \"First Name\", lastname as \"Last Name\" from adoxyz order by 1)"; } if ($driver == 'access') { $db = NewADOConnection('access'); $db->Connect('nwind'); } if (empty($driver) or $driver == 'mysql') { $db = NewADOConnection('mysql'); $db->Connect('localhost','root','','test'); } //$db->pageExecuteCountRows = false; $db->debug = true; if (0) { $rs = $db->Execute($sql); include_once('../toexport.inc.php'); print "<pre>"; print rs2csv($rs); # return a string print '<hr />'; $rs->MoveFirst(); # note, some databases do not support MoveFirst print rs2tab($rs); # return a string print '<hr />'; $rs->MoveFirst(); rs2tabout($rs); # send to stdout directly print "</pre>"; } $pager = new ADODB_Pager($db,$sql); $pager->showPageLinks = true; $pager->linksPerPage = 10; $pager->cache = 60; $pager->Render($rows=7); ?>
Close