Re: [PHP-WIN] PHP Windows Installer maintainer finally joins the list

2007-08-25 Thread John Mertic
Here's some code I've used in the past, YMMV: $ad = ldap_connect("ldap://{$ldapserver}",389) or die("Couldn't connect to AD!"); ldap_set_option($ad, LDAP_OPT_PROTOCOL_VERSION, 3); ldap_set_option($ad, LDAP_OPT_REFERRALS, 0); $bd = ldap_bind($ad,$ldapuser,$ldappass) or die("Couldn't bin

Re: [PHP-WIN] how to add query string

2007-08-25 Thread Piotr Pluciennik
Hi, place a html anchor with required parameters in your html or html template file: ... link description ... then invoking above link, in your phpage.php you will get: value1 accessible via $_GET['param1'] value2 accessible via $_GET['param2'] value3 accessible via $_GET['param3'] for exa