Hi.
I am trying to figure out how to set up a loop to select only one value from an array at a time, then return it to a function, and repeat the loop until all it end.
if ( !empty($HTTP_POST_VARS['unban_user'])
{
$banning_emaill->unban_email_sent($unbanned_usernames);
}
where $unbanned_useranmes is an array of usernames, that needs to be returned to unban_email_sent for a username lookup that will send an email if the user is unbanned.
And this is a mod that I am working on for phpBB
Any help is greatly appreciated.