oh dear - i dont like the sound of that!
Lets say as in the above example I had a company movement sheet, whereby it displayed all the employees and whether they had said they would be in or out that day. Database wise, not a problem - you have a table with username, date, and "in" or "out" field, and with the PHP you query that database to give you all the records with todays date in it and inner join it with the user table that gives you the proper name for that username and then display the lot in a table.
But if i can only connect to LDAP through PHP, then surely that changes things hugely - i'd have to do the same query, but then for every result that's returned i'd have to do the LDAP thing to check the active directory to see what is the name of the user with the username that was returned from the database. that means that if i had 50 employees then it would effectively go off and check the AD 50 separate times, which would be quite a waste of resources, wouldnt it?
Is there something I'm missing here??!!
Also could you post links to any MS guides that you know of - i'm searching the site and am not having much luck finding any...
Many thanks for your time