Fun w/ LDAP

I have never got LDAP to work with PHP. I will figure it out!

Is LDAP Library Enabled

Checking to see if the library is even installed and enabled.

if (function_exists("ldap_connect"))
	print "<p>The LDAP PHP Library is enabled</p>";
else
	print"<p>The LDAP PHP library is NOT enabled</p>";
			

Code In Action

The LDAP PHP library is NOT enabled