home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 August / PCWorld_2001-08_cd.bin / Komunikace / phptriad / phptriadsetup2-11.exe / htdocs / phpMyAdmin / tbl_rename.php < prev    next >
PHP Script  |  2000-08-20  |  346b  |  13 lines

  1. <?php
  2. /* $Id: tbl_rename.php,v 1.5 2000/02/13 20:15:57 tobias Exp $ */
  3. $old_name = $table;
  4. $table = $new_name;
  5. require("header.inc.php");
  6.  
  7. $result = mysql_db_query($db, "ALTER TABLE $old_name RENAME $new_name") or mysql_die();
  8. $table = $old_name;
  9. eval("\$message =  \"$strRenameTableOK\";");
  10. $table = $new_name;
  11. include("tbl_properties.php");
  12. ?>
  13.