<?
/*
PHP Code Builder
Copyright (C) 2007 Revmakx
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
require_once("header.php");
heading("Manage Function");
$db_n=$_REQUEST['db_n'];
$table_n=$_REQUEST['table_n'];
$db=$_REQUEST['db'];
$table=$_REQUEST['table'];
$btn=$_REQUEST['btn'];
$fun_name=$_REQUEST['fun_name'];
$fun_text=$_REQUEST['fun_text'];
include('connect.php');
?>
<style type="text/css">
<!--
.style1 {
font-family: Arial;
font-size: 14px;
}
-->
</style>
<form name="form1" method="post" action="?">
<p>
</p>
<p> </p>
<p align="center"> </p>
<table width="300" border="0" align="center">
<tr>
<td align="center" background="create_db.php"><a href="create_db.php" class="style1">Create Database To Store Functions</a></td>
</tr>
<tr>
<td align="center"><a href="create_fun.php" class="style1">Create a Function </a></td>
</tr>
<tr>
<td align="center"><a href="edit_fun.php" class="style1">Edit a Function </a></td>
</tr>
</table>
<p align="center"> </p>
<? require("footer.php");?>