PHP Classes

File: rename.php

Recommend this page to a friend!
  Classes of Marius   dbFile   rename.php   Download  
File: rename.php
Role: Application script
Content type: text/plain
Description: rename.php
Class: dbFile
file based web database and Administrator
Author: By
Last change:
Date: 19 years ago
Size: 699 bytes
 

Contents

Class file image Download
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
<head>
    <title>Rename table <?php print("$TABLE"); ?></title>
            <link rel="stylesheet" href="settings.css" type="text/css">
</head>

<body>
<center>
Rename table <font color=#FF0000><?php print("$TABLE"); ?></font> in database <font color=#FF0000><?php print("$DB"); ?></font>
<form name=form1 action=rename2.php method=post>
<input type=hidden name=DB value="<?php print("$DB"); ?>">
<input type=hidden name=TABLE value="<?php print("$TABLE"); ?>">
Enter new name : <input type=text name=Tablename value="<?php print("$TABLE"); ?>">
<input type=submit value="Rename">
</form>
</center>


</body>
</html>