create your own

Use Windows Login in PHP Applications

81
rate or flag this page

By Alpho011

PHP CookBook

PHP Cookbook PHP Cookbook
Price: $22.00
List Price: $44.99

As a developer you may run into a situation such as what I had, numerous applications deployed and or created and deployed.

With multiple logins for all the apps, we had to find way to integrate all logins for better management and maintenance.

Since we were using Apache with a PHP server, the solution was to find a way to consolidate the logins usin PHP.

The answer is ldap() (Lightweight Directory Access Protocol), this built in function through PHP, allows you to create username and password schemes using existing Windows authentication.

Take this snippet:

$ldaprdn = 'myName@timbuckTwo.com'; // ldap rdn or dn
$ldappass = 'password'; // associated password

// connect to ldap server
$ldapconn = ldap_connect("Ip address or domain name")or die("Could not connect to LDAP server.");

That is all it takes to connect to your windows login using PHP.

Now for the practical example:

$ldaprdn = $_POST['username']; // ldap rdn or dn
$ldappass = $_POST['password']; // associated password

// connect to ldap server
$ldapconn = ldap_connect("Ip address or domain name")or die("Could not connect to LDAP server.");

The values can be passed on using a web form with the text field names of username and password:

See form code below:

<form name="form1" method="post" action="">
<table>
<tr>
<th colspan="2"><div align="center"><?=$errorMess;?></div></th>
</tr>
<tr>
<td width="76">Username</td>
<td width="324"><input class="<?=$aClass;?>" type="text" name="username" id="username" value="<?=$_POST['username'];?>"></td>
</tr>
<tr>
<td>Password</td>
<td><input class="<?=$aClass;?>" type="password" name="password" id="password" value="<?=$_POST['password'];?>"></td>
</tr>
<tr>
<td colspan="2"><input type="submit" name="Submit" id="Submit" value="Submit"></td>
</tr>
</table>
</form>

Using the multi purpose pages described in my other tutorial about forms, you can see how the logic of before we push Submit and after we push Submit.

After pushing Submit this snippet runs:

// using ldap bind
$ldaprdn = $_POST['username']; // ldap rdn or dn
$ldappass = $_POST['password']; // associated password


//lets concatenate the proper username:

$ldaprdn = $_POST['username'] . "@whatever the domain name is";

// connect to ldap server
$ldapconn = ldap_connect("ldap.example.com")
or die("Could not connect to LDAP server.");

if ($ldapconn) {

// binding to ldap server
$ldapbind = ldap_bind($ldapconn, $ldaprdn, $ldappass);

// verify binding
if ($ldapbind) {
echo "LDAP bind successful...";
} else {
echo "LDAP bind failed...";
}

}

We contactenated or connected the username and the domain extension to create the proper credentials to pass on to Active Directory.

Now using this knowledge, you can create authentication using the built in Windows login, no creating usernames and passwords, Windows can manage that, leaving you to script and create.

Recap:

We went over basic authentication using a small script and how you can incorporate such a script in a real life scenario.

I invite you to look at the ldap() function and its companions, it does alot more than what we went over, you can search, create and delete and modify users listed on Active Directory using the function.

I will be listing other real world scenarios in the articles to come, please come and do book mark me.

Thank you.

Print   —   Rate it:  up  down  flag this hub

Comments

RSS for comments on this Hub

Lgali profile image

Lgali  says:
8 months ago

another good hub

Alpho011 profile image

Alpho011  says:
7 months ago

Thank you Lgali, I hope that what I write can benefit anyone who chooses to use it.

Thank you

ZeeaD  says:
7 months ago

this is wonderful tutorial .. i read it 3 times and get a fantastic results and sure i put a copy of this lesson on my site herewww.7wass.com

Alpho011 profile image

Alpho011  says:
7 months ago

Thank you ZeeaD

Jim Gaudet  says:
7 months ago

Nice, now we mix the open source apps into the local Intranet..Thanks

:)

INDRANI profile image

INDRANI  says:
7 months ago

Thanks for sharing your excellent information.Very informative.

doross  says:
7 months ago

this is wonderful tutorial .. i read it 3 times and get a fantastic results and sure i put a copy of this lesson on my site herewww.doross.org

al3boshi  says:
7 months ago

his is wonderful tutorial .. i read it 3 times and get a fantastic results and sure i put a copy of this lesson on my site here

http://www.al3boshi.com/vb

dolo  says:
7 months ago

good

Alpho011 profile image

Alpho011  says:
7 months ago

Just wanted to thank you all for reading and hopefully getting something out of these how tos, once again, thanks.

sayed  says:
7 months ago

this is wonderful tutorial .. i read it 3 times and get a fantastic results and sure i put a copy of this lesson on my site here

www.alhmaya.com

www.ay300.com

sdsds  says:
6 months ago

<!-- /* Font Definitions */ @font-face {font-family:"Microsoft Sans Serif"; panose-1:2 11 6 4 2 2 2 2 2 4; mso-font-charset:0; mso-generic-font-family:swiss; mso-font-pitch:variable; mso-font-signature:1627421663 -2147483648 8 0 66047 0;} /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0cm; margin-bottom:.0001pt; text-align:right; mso-pagination:widow-orphan; direction:rtl; unicode-bidi:embed; font-size:12.0pt; font-family:"Times New Roman"; mso-fareast-font-family:"Times New Roman";} @page Section1 {size:612.0pt 792.0pt; margin:72.0pt 90.0pt 72.0pt 90.0pt; mso-header-margin:36.0pt; mso-footer-margin:36.0pt; mso-paper-source:0;} div.Section1 {page:Section1;} --> this is wonderful tutorial .. i read it 3 times and get a fantastic results and sure i put a copy of this lesson on my site here

amrozaki  says:
4 months ago

this is wonderful tutorial .. i read it 3 times and get a fantastic results and sure i put acopy of this lesson on my site here www.7asryat.prnamg.net

osama  says:
4 weeks ago

Thank you wonderful information

http://www.moshreq.com/forum

Submit a Comment

Members and Guests

Sign in or sign up and post using a hubpages account.


optional


  • No HTML is allowed in comments, but URLs will be hyperlinked
  • Comments are not for promoting your hubs or other sites

working