[PHP] How to create an empty array

2003-02-27 Thread Michael Zornek
I want to create an empty array so I can add elements to it later I'm currently using: $catergory_list[] =array(); But when I try to print this list I discover the element zero has the string Array in it. How can I create a truly empty array? ~ Mike -- MikeZornek.com New blog, new QA column,

Re: [PHP] How to create an empty array

2003-02-27 Thread Adam Voigt
$category_list = array(); On Thu, 2003-02-27 at 12:17, Michael Zornek wrote: I want to create an empty array so I can add elements to it later I'm currently using: $catergory_list[] =array(); But when I try to print this list I