<pre>
------ Transfer Logins ------
<?PHP
ini_set 
('max_execution_time'60);

// Include the config
require_once('../include/config.inc.php');

$sql "SELECT * FROM `gentoo-portage`.`login`";
$results mysql_query($sql) or die(mysql_error());

while(
$row mysql_fetch_assoc($results)){
    
$login = new user();
    
$login->register($row['email'], $row['password'], true);
}

?>
</pre>