~hexmode/+junk/main

« back to all changes in this revision

Viewing changes to install-files/apps/phpmyadmin2.10.1/server_sql.php

  • Committer: Mark A. Hershberger
  • Date: 2008-01-05 19:38:56 UTC
  • Revision ID: hershberger@spawn-xp-20080105193856-6rnzgwa4nehue3qj
initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?php
 
2
/* $Id: server_sql.php 7908 2005-11-24 09:12:17Z nijel $ */
 
3
// vim: expandtab sw=4 ts=4 sts=4:
 
4
 
 
5
require_once('./libraries/common.lib.php');
 
6
 
 
7
/**
 
8
 * Does the common work
 
9
 */
 
10
$js_to_run = 'functions.js';
 
11
require_once './libraries/server_common.inc.php';
 
12
require_once './libraries/sql_query_form.lib.php';
 
13
 
 
14
 
 
15
/**
 
16
 * Displays the links
 
17
 */
 
18
require './libraries/server_links.inc.php';
 
19
 
 
20
 
 
21
/**
 
22
 * Query box, bookmark, insert data from textfile
 
23
 */
 
24
PMA_sqlQueryForm();
 
25
 
 
26
/**
 
27
 * Displays the footer
 
28
 */
 
29
require_once './libraries/footer.inc.php';
 
30
?>