[Date Prev][Date Next] [Chronological] [Thread] [Top]

Displaying modification date



Hello,

I'm using php scripts to try to show output from openldap tables
and run up against a problem.  If I use the following lines:

echo "cn entry is: ". $info[$i]["cn"][0] ."<br>";
echo "entry created: ". $info[$i]["createTimestamp"] ."<br>";
echo "entry modified: ". $info[$i]["modifyTimestamp"] ."<br>";

the first line prints the value of cn, but the next two lines
don't print any values for the timestamp attributes.

Can I do this?  If so, how?  What am I doing wrong?

Thanks,
Don MacDougall