RE: [PHP] general questions

2003-06-03 Thread Ford, Mike [LSS]
> -Original Message- > From: Dale [mailto:[EMAIL PROTECTED] > Sent: 02 June 2003 19:43 > > I am new to php and I just have some general questions. > > 1. when you create a new variable such as an integer, is it > automatically > initialized or is it considered empty similar to asp? In P

Re: [PHP] general questions

2003-06-03 Thread Jordan S. Jones
Dale, 1. If my memory serves me correctly, when you initialize a variable, it is given the default value of NULL until something is assigned to it. 2. PHP is not a strongly typed language, meaning that your array would act as so: $arr_test[0] = 1; /// Integer ty