RE: [PHP-WIN] querying more than one db from a php page?

2003-12-15 Thread George Pitcher
Thanks guys, I think I'm OK with what I want to do. Just to clarify, not expencting any response, my main database holds all my service's transaction records. The other databases are ones that my customers have as workflow managers. The updates would be specific to each customer and not

php-windows Digest 15 Dec 2003 07:58:42 -0000 Issue 2042

2003-12-15 Thread php-windows-digest-help
php-windows Digest 15 Dec 2003 07:58:42 - Issue 2042 Topics (messages 22384 through 22384): Re: querying more than one db from a php page? 22384 by: George Pitcher Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the digest, e-mail:

RE: [PHP-WIN] embedded PHP in HTML

2003-12-15 Thread Svensson, B.A.T. (HKG)
Try something like this: script language=php runat=server echo (hello there); /script -Original Message- From: Ahmad Khashan To: [EMAIL PROTECTED] Sent: 12/12/2003 2:04 PM Subject: [PHP-WIN] embedded PHP in HTML I am trying to get this code to work: html head /head body ptrying

[PHP-WIN] Import Trusted Root Cert

2003-12-15 Thread Bryan Thoreson
Hi, Does anyone know how to import a trusted root certificate for use with a LDAP TLS bind? Bryan ~~~ Bryan Thoreson 12/15/2003 Infotech Professional CLA OIT   University of Minnesota -- PHP Windows Mailing

RE: [PHP-WIN] Import Trusted Root Cert

2003-12-15 Thread Bowden, Zeb
Yep, path seems to be hardcoded (at least it was in 4.2.3) You need this dir structure: C:\OpenLDAP |- \sysconf |-ldap.conf |-\certs |-certificate.pem Then ldap.conf needs this line: TLS_CACERT

[PHP-WIN] Inconsistent php sematics witrh trim() ... or can't trim() handle assignment with same variable?

2003-12-15 Thread Svensson, B.A.T. (HKG)
Just ran into this annoying thing today: Why does this /NOT/ work to remove NL's: $AccNr = fgets($fp); while ( !feof($fp) ) { $AccNr = trim($AccNr); /// trim() DOES NOT WORK HERE $InsertStr = insert into $UpLoadTable values ('$AccNr'); print pre$i: Inserting:

Re: [PHP-WIN] Inconsistent php sematics witrh trim() ... or can't trim() handle assignment with same variable?

2003-12-15 Thread Frank M. Kromann
I can't see a promlem with the trim() function. Try this: ?php $a = test\n; echo ***$a***; $a = trim($a); echo ***$a***; ? output: *** test **test*** I have tested with both php4 and php5 from cvs. - Frank Just ran into this annoying thing today: Why does this /NOT/ work to

php-windows Digest 16 Dec 2003 06:21:55 -0000 Issue 2043

2003-12-15 Thread php-windows-digest-help
php-windows Digest 16 Dec 2003 06:21:55 - Issue 2043 Topics (messages 22385 through 22389): Re: embedded PHP in HTML 22385 by: Svensson, B.A.T. (HKG) Import Trusted Root Cert 22386 by: Bryan Thoreson 22387 by: Bowden, Zeb Inconsistent php sematics witrh trim() ...