it works great. I modified the script to take care of putting the new users into the usergroups.
Thanks for your help.
<?php $uidmin = 2; //first userid to be created (check your db table xoops_users to see which is the last used one) $uidmax = 400; //last userid to be created $linkidused = 7; //check xoops_groups_users_link which is the last used linkid and enter it here. $groupid = 2; //check the table xoops_groups to see which $groupid stands for which group. '2' for example is 'registered users' usually for ($uid = $uidmin; $uid < $uidmax; $uid++) { $result = $linkidused + $uid; echo "INSERT INTO `xoops_stresstest____users` VALUES (".$uid.", '', 'JoeUser".$uid."', 'anymail".$uid."@fdsflksj.cdb', '', 'blank.gif', 1094155383, '', '', '', 0, '6cc7a5d0', '', '', '', '3516064db5fa1c4c13cd0eee42cce334', 2, 0, 0, 1, '', '0.0', 1094155547, 'nest', 0, 1, 0, '', '', '', 1); "; echo "INSERT INTO `xoops_stresstest____groups_users_link` VALUES ($result, $groupid, $uid); "; } ?>