Example #1
0
<?php

require_once 'config.php';
if (!WS_ACCESS) {
    die(_header() . _noauth() . _footer());
}
$html = _header();
$html .= _menu();
$html .= _global_index();
switch ($_GET['p']) {
    case 'zayav':
        switch (@$_GET['d']) {
            case 'info':
                $html .= zayav_info();
                break;
            default:
                $html .= zayav(_hashFilter('zayav'));
        }
        break;
}
$html .= _footer();
die($html);
Example #2
0
          
           
        </head>
        <body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&appId=904735236226394&version=v2.0";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

             <div class="gb-entire">
                <?php 
echo _menu();
?>
                <!--++++++++++++++++++++++++++++++++++++++++++++-->
                <!--++++++++++++++++++++++++++++++++++++++++++++-->

                <div class="gb-main">
                   
                    <div class="div-content">
                             <div class="div-title"><h1><span>API</span>Master</h1></div>
                                
                                <div class="apim-container default-content">
                                   
                                    <!--<div class="apim-logo">
                                        <div class="defini">
                                        <b>APIMaster</b> is a testing tool designed by <b>Gabenta</b> specifically for developers whose having a hard time connecting with other's API during the test environment, basically it helps you saving time & become more productive.
                                        </div>
Example #3
0
if ($mode == 'schema') {
    pagehead();
    _menu();
    $table = $form['table'];
    _table_schema($table);
    pagetail();
    exit;
} else {
    if ($mode == 'viewdata') {
        pagehead();
        _menu();
        $table = $form['table'];
        _table_data($table);
        pagetail();
        exit;
    } else {
        if ($mode == 'groupcount') {
            pagehead();
            _menu();
            $table = $form['table'];
            $column = $form['column'];
            _table_groupcount($table, $column);
            pagetail();
            exit;
        }
    }
}
pagehead();
_menu();
pagetail();
exit;