~hexmode/+junk/main

« back to all changes in this revision

Viewing changes to install-files/apps/phpmyadmin2.10.1/tbl_import.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: tbl_import.php 9601 2006-10-25 10:55:20Z nijel $ */
 
3
// vim: expandtab sw=4 ts=4 sts=4:
 
4
 
 
5
require_once('./libraries/common.lib.php');
 
6
 
 
7
/**
 
8
 * Gets tables informations and displays top links
 
9
 */
 
10
require_once('./libraries/tbl_common.php');
 
11
$url_query .= '&amp;goto=tbl_import.php&amp;back=tbl_import.php';
 
12
 
 
13
require_once('./libraries/tbl_info.inc.php');
 
14
/**
 
15
 * Displays top menu links
 
16
 */
 
17
require_once('./libraries/tbl_links.inc.php');
 
18
 
 
19
$import_type = 'table';
 
20
require_once('./libraries/display_import.lib.php');
 
21
 
 
22
/**
 
23
 * Displays the footer
 
24
 */
 
25
require_once('./libraries/footer.inc.php');
 
26
?>
 
27