Re: [PHP] manipulating constant name as string

2006-01-01 Thread Tom Rogers
Hi, Monday, January 2, 2006, 4:37:17 AM, you wrote: DG> Hello DG> I am trying to access the constant name as string and not the constant DG> contents. For example, DG> define('myconst', 'const text 1'); DG> $myArray = array() DG> myArray['myconst'] = "this is it" DG> etc. DG> $xmltext=""; DG>

[PHP] manipulating constant name as string

2006-01-01 Thread Daniel Gross
Hello I am trying to access the constant name as string and not the constant contents. For example, define('myconst', 'const text 1'); $myArray = array() myArray['myconst'] = "this is it" etc. $xmltext=""; foreach ($myArray as $key => $val) { echo "$key = $val\n\n"; $xmltext .= "$xmlt

Re: [PHP] Re: HAPPY NEW YEAR!!

2006-01-01 Thread sunaram patir
happy new year from me too! On 1/1/06, Julio B. <[EMAIL PROTECTED]> wrote: > Feliz año nuevo. > > Saludos, > > Julio Barroso > > ""Jesús Alain Rodríguez Santos"" <[EMAIL PROTECTED]> escribió en el > mensaje news:[EMAIL PROTECTED] > Happy New Year for all. > I weish you the best in this new 2006. >

Re: [PHP] Managing upload files in multiple servers(pawns)

2006-01-01 Thread David Tulloh
Duncan Hill wrote: > > Use a shared file system such as NFS for upload storage. > ... > Shared storage is probably the better bet - perhaps with clever code that > tries a local disk first, then the shared storage if not found on local. If > found shared and not local, pull to local. > I thin