You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
370 B
17 lines
370 B
![]()
11 years ago
|
<?php
|
||
|
/* For licensing terms, see /license.txt */
|
||
|
|
||
|
exit;
|
||
|
|
||
|
require_once '../inc/global.inc.php';
|
||
|
api_protect_admin_script();
|
||
|
|
||
|
$file = '';
|
||
|
$users = Import :: csv_to_array($file);
|
||
|
foreach ($users as $user) {
|
||
|
$userInfo = api_get_user_info_from_email($user['Email']);
|
||
|
if (empty($userInfo)) {
|
||
|
echo 'User does not exists: '.$userInfo['Email'].'<br />';
|
||
|
}
|
||
|
}
|