Initial revision
This commit is contained in:
36
tbl_copy.php3
Executable file
36
tbl_copy.php3
Executable file
@@ -0,0 +1,36 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
|
||||
|
||||
require("grab_globals.inc.php3");
|
||||
|
||||
require("header.inc.php3");
|
||||
|
||||
function my_handler($sql_insert)
|
||||
{
|
||||
global $table, $db, $new_name;
|
||||
|
||||
$sql_insert = ereg_replace("INSERT INTO $table", "INSERT INTO $new_name", $sql_insert);
|
||||
$result = mysql_db_query($db, $sql_insert) or mysql_die();
|
||||
$sql_query = $sql_insert;
|
||||
}
|
||||
|
||||
$sql_structure = get_table_def($db, $table, "\n");
|
||||
$sql_structure = ereg_replace("CREATE TABLE $table", "CREATE TABLE $new_name", $sql_structure);
|
||||
|
||||
$result = mysql_db_query($db, $sql_structure) or mysql_die();
|
||||
|
||||
if (isset($sql_query))
|
||||
$sql_query .= "\n$sql_structure";
|
||||
else
|
||||
$sql_query = "$sql_structure";
|
||||
|
||||
//$sql_query .= "\n$sql_structure";
|
||||
|
||||
|
||||
if($what == "data")
|
||||
get_table_content($db, $table, "my_handler");
|
||||
|
||||
eval("\$message = \"$strCopyTableOK\";");
|
||||
include("db_details.php3");
|
||||
?>
|
Reference in New Issue
Block a user