do the work */ if (isset($new_name) && trim($new_name) != '') { $old_name = $table; $table = $new_name; if (get_magic_quotes_gpc()) { $new_name = stripslashes($new_name); } // Ensure the target is valid // The functions used below are defined in "common.lib.php3" available_databases('main.php3?lang=' . $lang . '&server=' . $server); if (pmaIsInto($db, $dblist) == -1) { exit(); } if (MYSQL_INT_VERSION < 32306) { check_reserved_words($new_name, $err_url); } include('./header.inc.php3'); mysql_select_db($db); $sql_query = 'ALTER TABLE ' . backquote($old_name) . ' RENAME ' . backquote($new_name); $result = mysql_query($sql_query) or mysql_die('', '', '', $err_url); $message = sprintf($strRenameTableOK, $old_name, $table); $reload = 1; } /** * No new name for the table! */ else { include('./header.inc.php3'); mysql_die($strTableEmpty, '', '', $err_url); } /** * Back to the calling script */ require('./tbl_properties.php3'); ?>