|
PCCS MySQLDatabase Admin Tool version 1.3.4
|
/installscript/ -> mysqldb_installscript.php
1 <?php
2 ///////////////////////////////////////////////////////////////////////////////////// 3 // coder: cthorn 4 // mysqldb_admin.php 5 // 6 /************************************************************************
7 PCCS MySQLDatabase Admin Tool
8 Copyright (C) 1999 Chauncey Thorn
9
10 This program is free software; you can redistribute it and/or
11 modify it under the terms of the GNU General Public License
12 as published by the Free Software Foundation; either version 2
13 of the License, or (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA , USA.
23 **************************************************************************/
24
25 // updated 10-23-2000 26 // -- moving to a single file for global include files 27
28 require('../mysqldb_app_includes.php');
29
30
31 common_header($_title);
32
33 pageTop("PCCS MySQLAdmin Tool: CREATE INSTALLSCRIPTS","600");
34
35 if($ARGV[0] == "") {
36 print "<H3 align=center>Would you Like to create a shell or PHP Install Script</H3>";
37 print "<P><center>";
38 print "PHP application developers<br> ";
39 print "This section allows you to either create a PHP or shell InstallScript";
40 print "<P>";
41
42 $link_array = array(
43 "Main Menu" => "../",
44 "phpscript" => "mysqldb_phpinstallscript.php?action=start",
45 "shellscript" => "mysqldb_shinstallscript.php?action=start",
46 "Databases" => "../mysqldb_admin.php"
47 );
48
49 navBar($link_array);
50
51 print "<P></center>";
52 }
53
54
55 // footer();
56 pageBottom();
57 ?>
| |