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() ... o
I can't see a promlem with the trim() function.
Try this:
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 remove NL's:
>
> $AccNr = fgets($fp);
> while ( !feof($fp)
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 "$i: Inserting: $Inse
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 c:\OpenLDAP\sysconf\certs\certificate.p
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 List
Try something like this:
echo ("hello there");
-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:
trying to call PHP.
echo ("hello there");
The PHP co
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:
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 'global'.