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 : /nginx/html/_info/ |
Upload File : |
<? // _info/infoData.phpinc #t_Begin(); // Begin TRACKing included file. $fieldQuery="SHOW COLUMNS FROM `".$f_table."`"; $fieldResult = query_do($fieldQuery,$f_database); $fieldCount = $_SESSION['qry']['count']; $query="SELECT * FROM `".$f_table."`"; $dataResult = query_do($query,$f_database); $dataCount = $_SESSION['qry']['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><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"><?=htmlView($dataInfo[$fieldInfo['Field']])?></td> <? } else { // In div. ?> <td class="data"><?=info_Div(htmlView(substr($dataInfo[$fieldInfo['Field']],0,27)),htmlView($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. ?>