<?php
// Set the connection information
$con = mysql_connect("localhost", "root", "root");
// Select the original database containing old records
mysql_select_db("old_db", $con);
// Check the connection
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
// Select the records from the database
$query = "SELECT * FROM user_table";
// Run the query
$result = mysql_query($query);
// Now select the new database
mysql_select_db("new_db", $con);
// Loop through each row from the old database
while ($row = mysql_fetch_assoc($result))
{
// Set each column to a variable
$user_name = $row['user_name'];
$password = $row['password'];
$email = $row['email'];
// You could also reset defaults or check for NULL columns
// Here's an example for permissions:
if (
$row['permissions'] == 0){
$permissions = 1;
}
else if ($row['permissions'] > 3)
{
$permissions = $row['permissions'] + 1;
}
else
{
$permissions = $row['permissions'];
}
$date = $row['date'];
// Set up the INSERT query
$insert = "INSERT INTO new_user_table (user_name, password, email, permissions, date) VALUES ('$user_name', '$password', '$email', '$permissions', '$date')";
// Run the INSERT query
mysql_query($insert);
// Check to make sure this particular INSERT worked
if (!mysql_insert_id())
{
echo "ERROR: there was a problem inserting data.";
}
}
// Close the connection
mysql_close($con);
?>
That's it! This script is pretty simple and might not be great for really large user tables, but for smaller sites or when you're just testing data, it works fine.
No comments:
Post a Comment