RE: [PHP] Going through 2 arrays at once

2006-05-23 Thread Pavleck, Jeremy D.
Thanks for all the replies guys, it really helped me pick up a few things. One I ended up doing was using array_combine, like so: $d = array_combine($arrLogDrive, $logicalDrive); print_r($d); for (reset($d); $j = key($d); next($d)) { echo $j: $d[$j]br /\n; } Now, while it works spot

Re: [PHP] Re: Can php convert doc to HTML?

2006-05-23 Thread Dotan Cohen
On 5/24/06, Martin Alterisio [EMAIL PROTECTED] wrote: 2006/5/23, Jochem Maas [EMAIL PROTECTED]: my 2cents Martin Alterisio wrote: 2006/5/23, Dotan Cohen [EMAIL PROTECTED]: On 5/23/06, Martin Alterisio [EMAIL PROTECTED] wrote: If that's the case, why don't you just use the

Re: [PHP] Can a script run twice?

2006-05-23 Thread Lester Caine
Robert Cummings wrote: These are called race conditions for a reason. They are racing against all kinds of things. Network latency, filesystem, processor, etc etc. One site has take down it's Cisco backbone and replaced it with simple hubs. Problems disappeared overnight! ( That was not just

Re: [PHP] 3DES w/ openssl_{csr,pkey}_new ?

2006-05-23 Thread Chris
Brian A. Seklecki wrote: Does anyone know how to specify the encryption cipher used in this funciton as documented in OpenSSL's genrsa(1)? Why isn't the encryption method a value in [array configargs] ? -des|-des3|-idea These options encrypt the private key with the DES,

<    1   2