At this point you have to read the source file. If you read the comments you can find all the prototypes for the functions.
In order to compile the extension you need to have the Notes Toolkit installed on yor system. - Frank > Hi, > > Any suggestions where I might find out about the Notes PHP extension??? I > been looking for ages, and as far as I can see its almost developed but > nobody seems to know much more about it. > > Where can I get hold of it??? > > Richy > > -----Original Message----- > From: Frank M. Kromann [SMTP:[EMAIL PROTECTED]] > Sent: 13 November 2001 23:10 > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED]; Kevin > Subject: Re: RE: [PHP-WIN] PHP and Lotus Notes > > Hi, > > LDAP is one way and it requires that LDAP is enabled on the Notes server. > There is also a notes extension for php where you can read and write to all > notes bases. > There is no documentation on this extension at this point. > > - Frank > > > > Is there a way to have a PHP script display a Lotus Notes > > > database such as the address book? > > > > I think (but I could be wrong on this) that you can use LDAP functions > > to access a Lotus Notes address book. For more information try searching > > for 'ldap' on http://php.net. > > > > For example, to search for people called 'Smith' on server > > 'lotus1.domain.com', return their full name and mail and dump the > > results to the page so you can see what you got: > > <?php > > $connection = ldap_connect('lotus1.domain.com'); > > $bind = ldap_bind($connection); > > $search = ldap_search($ldap, '', 'cn=*smith*', array('cn', 'mail')); > > $results_array = ldap_get_entries($connection, $search); > > ldap_close($connection); > > echo '<pre>'; > > print_r($results_array); > > echo '</pre>'; > > ?> > > > > HTH, > > D. > > > > > > -- > > PHP Windows Mailing List (http://www.php.net/) > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > > > > > > > > > > -- > PHP Windows Mailing List (http://www.php.net/) > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]