hello,
this is the error i get:
Notice: Undefined offset: 0 in D:\ftproot\wwwroot\users.php3 on line 103
This is the function where is happens
function GetLDAPField($fullname, $field) {
global $LDAPSERVER;
$retval = False;
$ld = ldap_connect($LDAPSERVER);
if ($ld) {
$r = ldap_bind($ld);
$sr = ldap_search($ld, "c=Company", "cn=Recipients, cn=$fullname");
$info = ldap_get_entries($ld, $sr);
$retval = $info[0]["$field"][0]; [B]<-- Line 103[/B]
ldap_close($ld);
}
return $retval;
}
Using: PHP 4.2.2
on NT with IIS4
Any ideas?
Regards,
Martijn