Re: [PHP] constant arrays or something like #define in c

2001-08-23 Thread Andrey Hristov
for other way. Andrey Hristov IcyGEN Corporation http://www.icygen.com 99% - Original Message - From: "Gregor Maier" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, August 23, 2001 6:37 PM Subject: Re: [PHP] constant arrays or something like #define in c

Re: [PHP] constant arrays or something like #define in c

2001-08-23 Thread Gregor Maier
t;); > > > ${SESSION_NAME}['login'] > or > ${SESSION_NAME}['age'] > > > > Hope this helps. > > Andrey Hristov > IcyGEN Corporation > http://www.icygen.com > 99% > > ----- Original Message - > From: "Gregor Maier&qu

Re: [PHP] constant arrays or something like #define in c

2001-08-23 Thread Andrey Hristov
;,"age"=>"25"); ${SESSION_NAME}['login'] or ${SESSION_NAME}['age'] Hope this helps. Andrey Hristov IcyGEN Corporation http://www.icygen.com 99% - Original Message - From: "Gregor Maier" <[EMAIL PROTECTED]> To: <[EMAIL P

[PHP] constant arrays or something like #define in c

2001-08-23 Thread Gregor Maier
Hi, I'm looking for a way to get a constant array or something that is similiar to a #define XYZ abc in C. I want to be able to do the following: DEFINE SOMEHOW: abc as XYZ (like #define XYZ abc) where abc is an array. So that XYZ is replaced by abc. so that I can use XYZ[key] in my php-code